Skip to content

Commit

Permalink
Bugfix for b844a3f
Browse files Browse the repository at this point in the history
[extractor/weverse] Avoid unnecessary duplicate login

Authored by: bashonly
  • Loading branch information
bashonly authored and aalsuwaidi committed Apr 21, 2024
1 parent 87a1ee9 commit f3d72fb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions yt_dlp/extractor/weverse.py
Expand Up @@ -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',
Expand Down

0 comments on commit f3d72fb

Please sign in to comment.