mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2025-04-20 15:06:15 -04:00
fix bug: sender endlessly sends empty data
This commit is contained in:
parent
a9d01aa702
commit
d081bb9d01
1 changed files with 1 additions and 1 deletions
|
@ -465,7 +465,7 @@ class FileChunker {
|
||||||
}
|
}
|
||||||
|
|
||||||
isFileEnd() {
|
isFileEnd() {
|
||||||
return this._offset > this._file.size;
|
return this._offset >= this._file.size;
|
||||||
}
|
}
|
||||||
|
|
||||||
get progress() {
|
get progress() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue