mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-12-22 12:10:10 +09:00
Merge f7ca7e77be
into d55d1f423d
This commit is contained in:
commit
f9648dd721
@ -38,7 +38,11 @@ class SafariBaseIE(InfoExtractor):
|
|||||||
'Downloading login page')
|
'Downloading login page')
|
||||||
|
|
||||||
def is_logged(urlh):
|
def is_logged(urlh):
|
||||||
return 'learning.oreilly.com/home/' in urlh.geturl()
|
url = urlh.geturl()
|
||||||
|
parsed_url = compat_urlparse.urlparse(url)
|
||||||
|
return parsed_url.hostname.endswith('learning.oreilly.com') and (
|
||||||
|
parsed_url.path.startswith('/home/')
|
||||||
|
or (parsed_url.path == '/member/login/' and not parsed_url.query))
|
||||||
|
|
||||||
if is_logged(urlh):
|
if is_logged(urlh):
|
||||||
self.LOGGED_IN = True
|
self.LOGGED_IN = True
|
||||||
|
Loading…
Reference in New Issue
Block a user