mirror of
https://github.com/9001/copyparty.git
synced 2026-06-18 20:22:27 -06:00
Fix files not fully saving
Thought this was for chunking, but nope
This commit is contained in:
parent
d4a18e8ac7
commit
3b68f6895a
|
|
@ -3516,7 +3516,7 @@ class HttpCli(object):
|
|||
buf = b""
|
||||
for rbuf in reader:
|
||||
buf += rbuf
|
||||
if not rbuf or len(buf) >= 32768:
|
||||
if not rbuf:
|
||||
break
|
||||
|
||||
if buf:
|
||||
|
|
|
|||
Loading…
Reference in a new issue