mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2026-04-06 01:43:48 +00:00
fix bug: sender endlessly sends empty data
This commit is contained in:
@@ -465,7 +465,7 @@ class FileChunker {
|
||||
}
|
||||
|
||||
isFileEnd() {
|
||||
return this._offset > this._file.size;
|
||||
return this._offset >= this._file.size;
|
||||
}
|
||||
|
||||
get progress() {
|
||||
|
||||
Reference in New Issue
Block a user