diff options
| author | Sergey M․ <dstftw@gmail.com> | 2021-06-06 01:16:43 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2021-06-06 01:16:43 +0700 | 
| commit | bb7ac1ed669d67d79fa1a3b9e5c70271892ecbcc (patch) | |
| tree | f5cc7c3c0c2a996f5ca31f79fd3adb9b624fe6e5 | |
| parent | fdf91c52a8b58b3b7c12a393629fc962d6ab7618 (diff) | |
[facebook] Improve login required detection
| -rw-r--r-- | youtube_dl/extractor/facebook.py | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py index cb34c59f5..04650af39 100644 --- a/youtube_dl/extractor/facebook.py +++ b/youtube_dl/extractor/facebook.py @@ -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:  | 
