Browse Source

* Adjust download buffer size. Fixes issue #41342

Michaël Van Canneyt 1 week ago
parent
commit
fad1fbc584
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fppkg/src/pkgwget.pp

+ 1 - 1
packages/fppkg/src/pkgwget.pp

@@ -65,7 +65,7 @@ end;
 function TWGetDownloader.WGetDownload(Const URL: String; Dest: TStream): Boolean;
 
 Var
-  Buffer : Array[0..4096] of byte;
+  Buffer : Array[0..4095] of byte;
   Count : Integer;
 
 begin