[ie/adobepass] Fix provider requests (#11472)

Fix bug in dcfeea4dd5

Closes #11469
Authored by: bashonly
pull/11207/merge
bashonly 2024-11-06 21:26:05 +00:00 zatwierdzone przez GitHub
rodzic 282e19db82
commit 85fdc66b6e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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)