Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pysssss.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ async def download_to_file(url, destination, update_callback, is_ext_subpath=Tru
if is_ext_subpath:
destination = get_ext_dir(destination)
try:
async with session.get(url) as response:
async with session.get(url, proxy=os.getenv('http_proxy')) as response:
size = int(response.headers.get('content-length', 0)) or None

with tqdm(
Expand Down