[common] restore using environment proxies by default (#6553, #6609)

change 'proxy-env' default to 'true'
This commit is contained in:
Mike Fährmann
2024-12-06 20:50:55 +01:00
parent 34e157e166
commit 7091904b20
3 changed files with 3 additions and 3 deletions

View File

@@ -348,7 +348,7 @@ class Extractor():
ssl_options = ssl_ciphers = 0
# .netrc Authorization headers are alwsays disabled
session.trust_env = True if self.config("proxy-env", False) else False
session.trust_env = True if self.config("proxy-env", True) else False
browser = self.config("browser")
if browser is None: