mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Search: Fix GZip decompression code
This commit is contained in:
parent
51b3a5164d
commit
eb159c0b18
1 changed files with 2 additions and 2 deletions
|
@ -85,9 +85,9 @@ def download_file(url, referer=None):
|
|||
response = urllib.request.urlopen(req)
|
||||
dat = response.read()
|
||||
# Check if it is gzipped
|
||||
if dat[:2] == '\037\213':
|
||||
if dat[:2] == b'\x1f\x8b':
|
||||
# Data is gzip encoded, decode it
|
||||
compressedstream = io.StringIO(dat)
|
||||
compressedstream = io.BytesIO(dat)
|
||||
gzipper = gzip.GzipFile(fileobj=compressedstream)
|
||||
extracted_data = gzipper.read()
|
||||
dat = extracted_data
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue