projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6400f8e
)
[9gag] Make post view regex more robust
author
Sergey M․
<dstftw@gmail.com>
Tue, 22 Sep 2015 19:44:38 +0000
(
01:44
+0600)
committer
Sergey M․
<dstftw@gmail.com>
Tue, 22 Sep 2015 19:44:38 +0000
(
01:44
+0600)
youtube_dl/extractor/ninegag.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/ninegag.py
b/youtube_dl/extractor/ninegag.py
index d157b0d1023ea5ab10e58fe538a6424bb8f4069c..692cc3368f17ab80c6ea0132b8ba6eefa3ef9120 100644
(file)
--- a/
youtube_dl/extractor/ninegag.py
+++ b/
youtube_dl/extractor/ninegag.py
@@
-59,7
+59,8
@@
class NineGagIE(InfoExtractor):
webpage = self._download_webpage(url, display_id)
post_view = json.loads(self._html_search_regex(
- r'var postView = new app\.PostView\({\s*post:\s*({.+?}),\s*posts:\s*prefetchedCurrentPost', webpage, 'post view'))
+ r'var\s+postView\s*=\s*new\s+app\.PostView\({\s*post:\s*({.+?})\s*,\s*posts:\s*prefetchedCurrentPost',
+ webpage, 'post view'))
ie_key = None
source_url = post_view.get('sourceUrl')