diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-11-06 21:26:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-06 21:26:05 +0000 |
commit | 85fdc66b6e01d19a94b4f39b58e3c0cf23600902 (patch) | |
tree | f87f30936785e54e2f07624cd18d5c2bcd814b37 | |
parent | 282e19db827f0951c783ac946429f662bcf2200c (diff) |
[ie/adobepass] Fix provider requests (#11472)
Fix bug in dcfeea4dd5e5686821350baa6c7767a011944867
Closes #11469
Authored by: bashonly
-rw-r--r-- | yt_dlp/extractor/adobepass.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/adobepass.py b/yt_dlp/extractor/adobepass.py index 7cc15ec7b..f1b877927 100644 --- a/yt_dlp/extractor/adobepass.py +++ b/yt_dlp/extractor/adobepass.py @@ -1362,7 +1362,7 @@ class AdobePassIE(InfoExtractor): # XXX: Conventionally, base classes should en def _download_webpage_handle(self, *args, **kwargs): headers = self.geo_verification_headers() - headers.update(kwargs.get('headers', {})) + headers.update(kwargs.get('headers') or {}) kwargs['headers'] = headers return super()._download_webpage_handle( *args, **kwargs) |