diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-07-02 23:15:55 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-07-02 23:15:55 +0800 |
commit | 6a424391d9745f46c8451771ae4d62da389cc311 (patch) | |
tree | 5392ff59c5071168b18eb05a4ffa8cf5b5fbe546 /youtube_dl/extractor | |
parent | dbf0157a26272a43398b986ab65327c150af8432 (diff) |
[facebook] Make embed detection stricter to prevent false-positives
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/facebook.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py index 6eaa22d89..bbdb14366 100644 --- a/youtube_dl/extractor/facebook.py +++ b/youtube_dl/extractor/facebook.py @@ -140,7 +140,7 @@ class FacebookIE(InfoExtractor): # see https://developers.facebook.com/docs/plugins/embedded-video-player mobj = re.search(r'''(?x)<div[^>]+ class=(?P<q1>[\'"])[^\'"]*\bfb-video\b[^\'"]*(?P=q1)[^>]+ - data-href=(?P<q2>[\'"])(?P<url>[^\'"]+)(?P=q2)''', webpage) + data-href=(?P<q2>[\'"])(?P<url>(?:https?:)?//(?:www\.)?facebook.com/.+?)(?P=q2)''', webpage) if mobj is not None: return mobj.group('url') |