mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 14:37:21 +00:00
Bugfix for b844a3f8b1
[extractor/weverse] Avoid unnecessary duplicate login Authored by: bashonly
This commit is contained in:
parent
f8f9250fe2
commit
fd5d93f704
|
@ -34,6 +34,9 @@ class WeverseBaseIE(InfoExtractor):
|
|||
}
|
||||
|
||||
def _perform_login(self, username, password):
|
||||
if self._API_HEADERS.get('Authorization'):
|
||||
return
|
||||
|
||||
headers = {
|
||||
'x-acc-app-secret': '5419526f1c624b38b10787e5c10b2a7a',
|
||||
'x-acc-app-version': '2.2.6',
|
||||
|
|
Loading…
Reference in a new issue