From 8e71f96837355dee281bb2ea829ffe04c0a597a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Sat, 11 Jul 2026 00:30:32 +0400 Subject: [PATCH] fix: 8KB chunk size, bump to 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 02e0a50..57be363 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 = 64 * 1024; + var CHUNK = 8 * 1024; var offset = 0; var startTime = Date.now(); var lastProgress = 0;