mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-02-17 15:06:47 +01:00
Bugfix for 59e92b1f1833440bb2190f847eb735cf0f90bc85
Closes #8012 Authored by: Grub4K
This commit is contained in:
parent
7237c8dca0
commit
77bff23ee9
@ -156,6 +156,8 @@ class HTTPHandler(urllib.request.AbstractHTTPHandler):
|
||||
def gz(data):
|
||||
# There may be junk added the end of the file
|
||||
# We ignore it by only ever decoding a single gzip payload
|
||||
if not data:
|
||||
return data
|
||||
return zlib.decompress(data, wbits=zlib.MAX_WBITS | 16)
|
||||
|
||||
def http_request(self, req):
|
||||
|
Loading…
x
Reference in New Issue
Block a user