aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-08-10 11:55:24 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-08-10 11:57:15 +0200
commita6da7b6b9657f621a927cb4c7bc46cf7c6c27b11 (patch)
tree9818e7f00008ed4f96fb80084599513b87f8c1b8 /youtube_dl
parent173a7026d59bacfbfe7a8eea92e10ef6e89d1798 (diff)
downloadyoutube-dl-a6da7b6b9657f621a927cb4c7bc46cf7c6c27b11.tar.xz
[facebook] Allow '?' before '#!' (fixes #3477)
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/facebook.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py
index f0cd8f156..f7cf700b5 100644
--- a/youtube_dl/extractor/facebook.py
+++ b/youtube_dl/extractor/facebook.py
@@ -20,7 +20,7 @@ from ..utils import (
class FacebookIE(InfoExtractor):
_VALID_URL = r'''(?x)
https?://(?:\w+\.)?facebook\.com/
- (?:[^#?]*\#!/)?
+ (?:[^#]*?\#!/)?
(?:video/video\.php|photo\.php|video/embed)\?(?:.*?)
(?:v|video_id)=(?P<id>[0-9]+)
(?:.*)'''