commit 78a8b167de8452bf852d2564b82d1ebda29d8653 parent a9d01aa702a6cb31ce4094e49a5e606b35504e39 Author: RobinLinus <RobinLinus@users.noreply.github.com> Date: Sat, 14 Aug 2021 17:01:21 +0200 Merge pull request #342 from angela0/angela0-patch-1 fix bug: sender endlessly sends empty data Diffstat:
M | client/scripts/network.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/client/scripts/network.js b/client/scripts/network.js @@ -465,7 +465,7 @@ class FileChunker { } isFileEnd() { - return this._offset > this._file.size; + return this._offset >= this._file.size; } get progress() {