[extractor/wrestleuniverse] Fix cookies support

Closes #7298
Authored by: bashonly
This commit is contained in:
bashonly 2023-06-13 15:49:18 -05:00
parent cab94a0cd8
commit c8561c6d03
No known key found for this signature in database
GPG Key ID: 783F096F253D15B0
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class WrestleUniverseBaseIE(InfoExtractor):
token = try_call(lambda: self._get_cookies('https://www.wrestle-universe.com/')['token'].value)
if not token and not self._REFRESH_TOKEN:
self.raise_login_required()
self._REAL_TOKEN = token
self._TOKEN = token
if not self._REAL_TOKEN or self._TOKEN_EXPIRY <= int(time.time()):
if not self._REFRESH_TOKEN: