1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 00:25:08 +00:00

Update to ytdl-commit-c2350ca

Update MSVC 2010 redist URL
c2350cac24
This commit is contained in:
pukkandan
2021-06-08 00:28:32 +05:30
parent bd99f6e648
commit 46358f647d
4 changed files with 79 additions and 90 deletions

View File

@ -519,7 +519,10 @@ class FacebookIE(InfoExtractor):
raise ExtractorError(
'The video is not available, Facebook said: "%s"' % m_msg.group(1),
expected=True)
elif '>You must log in to continue' in webpage:
elif any(p in webpage for p in (
'>You must log in to continue',
'id="login_form"',
'id="loginbutton"')):
self.raise_login_required()
if not video_data and '/watchparty/' in url: