mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
correctly ignore multirange requests
This commit is contained in:
parent
418000aee3
commit
f217e1ce71
|
@ -2556,8 +2556,12 @@ class HttpCli(object):
|
|||
hrange = self.headers.get("range")
|
||||
|
||||
# let's not support 206 with compression
|
||||
if do_send and not is_compressed and hrange and file_sz:
|
||||
# and multirange / multipart is also not-impl (mostly because calculating contentlength is a pain)
|
||||
if do_send and not is_compressed and hrange and file_sz and "," not in hrange:
|
||||
try:
|
||||
if not hrange.lower().startswith("bytes"):
|
||||
raise Exception()
|
||||
|
||||
a, b = hrange.split("=", 1)[1].split("-")
|
||||
|
||||
if a.strip():
|
||||
|
|
Loading…
Reference in a new issue