1
1
mirror of https://github.com/ytdl-org/youtube-dl synced 2024-07-11 08:05:08 +02:00

[crunchyroll] fix is_logged check

This commit is contained in:
Remita Amine 2019-03-02 08:25:47 +01:00
parent dca0e0040a
commit a8f83f0c56

View File

@ -60,7 +60,7 @@ class CrunchyrollBaseIE(InfoExtractor):
self._LOGIN_URL, None, 'Downloading login page')
def is_logged(webpage):
return '<title>Redirecting' in webpage
return 'href="/logout"' in webpage
# Already logged in
if is_logged(login_page):