mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Test for colon in mgid
This commit is contained in:
parent
6a46dc8db7
commit
b1298d8e06
1 changed files with 3 additions and 0 deletions
|
@ -158,6 +158,9 @@ def _real_extract(self, url):
|
|||
if mgid.endswith('.swf'):
|
||||
mgid = mgid[:-4]
|
||||
except RegexNotFoundError:
|
||||
mgid = None
|
||||
|
||||
if mgid is None or ':' not in mgid:
|
||||
mgid = self._search_regex(
|
||||
[r'data-mgid="(.*?)"', r'swfobject.embedSWF\(".*?(mgid:.*?)"'],
|
||||
webpage, u'mgid')
|
||||
|
|
Loading…
Reference in a new issue