[facebook] Improve login required detection

unlicense
=?UTF-8?q?Sergey=20M=E2=80=A4?= 2021-06-21 20:19:41 +02:00 committed by Dominika
parent ba41af65d6
commit 7855193169
1 changed files with 4 additions and 1 deletions

View File

@ -521,7 +521,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: