[9gag] Make post view regex more robust

This commit is contained in:
Sergey M․ 2015-09-23 01:44:38 +06:00
parent 6400f8ec0f
commit 5600e214c3
1 changed files with 2 additions and 1 deletions

View File

@ -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')