Skip to content

Commit

Permalink
[ie/adobepass] Fix provider requests (yt-dlp#11472)
Browse files Browse the repository at this point in the history
Fix bug in dcfeea4

Closes yt-dlp#11469
Authored by: bashonly
  • Loading branch information
bashonly authored Nov 6, 2024
1 parent 282e19d commit 85fdc66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/extractor/adobepass.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 85fdc66

Please sign in to comment.