Skip to content

Commit 8d7af13

Browse files
committedMar 10, 2025
Set Accept-Encoding to identity
1 parent 50be6fc commit 8d7af13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pywb/utils/loaders.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def load(self, url, offset, length):
342342
Load a file-like reader over http using range requests
343343
and an optional cookie created via a cookie_maker
344344
"""
345-
headers = {}
345+
headers = {"Accept-Encoding": "identity"}
346346
if offset != 0 or length != -1:
347347
headers['Range'] = BlockLoader._make_range_header(offset, length)
348348

0 commit comments

Comments
 (0)