Closes #8012

Authored by: Grub4K
pull/7047/head^2
Simon Sawicki 2023-09-02 15:18:04 +02:00
rodzic 7237c8dca0
commit 77bff23ee9
Nie znaleziono w bazie danych klucza dla tego podpisu
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -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):