From a851bfb1022cb81310027331bfbc6a8be26e7510 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sat, 11 Jul 2026 06:21:28 +0400 Subject: [PATCH] fix: back to 64KB chunks (was working), bump 1.0.17 --- site/static/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/static/app.js b/site/static/app.js index 57be363..02e0a50 100644 --- a/site/static/app.js +++ b/site/static/app.js @@ -200,7 +200,7 @@ async function uploadAll() { function uploadFileWS(url, f, idx) { return new Promise(function (resolve, reject) { var ws = new WebSocket(url); - var CHUNK = 8 * 1024; + var CHUNK = 64 * 1024; var offset = 0; var startTime = Date.now(); var lastProgress = 0;