mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-25 07:05:43 -03:00
Merge pull request #583 from willmiao/codex/analyze-zstd-content-encoding-error
fix: disable compression in default downloader headers
This commit is contained in:
@@ -70,7 +70,10 @@ class Downloader:
|
|||||||
|
|
||||||
# Default headers
|
# Default headers
|
||||||
self.default_headers = {
|
self.default_headers = {
|
||||||
'User-Agent': 'ComfyUI-LoRA-Manager/1.0'
|
'User-Agent': 'ComfyUI-LoRA-Manager/1.0',
|
||||||
|
# Explicitly request uncompressed payloads so aiohttp doesn't need optional
|
||||||
|
# decoders (e.g. zstandard) that may be missing in runtime environments.
|
||||||
|
'Accept-Encoding': 'identity',
|
||||||
}
|
}
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|||||||
Reference in New Issue
Block a user