mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
[mtv] Fix a missing match_id
Fix a problem introduced in 320724f964
where is extracted the ID from the url with self._match_id but the problem is that ID is not always present in the url passed so the title should be extracted as proposed by the fix (and like is done in _real_extract (see line 337))
This commit is contained in:
parent
6410992da9
commit
5fec75c81c
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ def _extract_mgid(self, webpage, url, data_zone=None):
|
|||
except RegexNotFoundError:
|
||||
mgid = None
|
||||
|
||||
title = self._match_id(url)
|
||||
title = url_basename(url)
|
||||
|
||||
try:
|
||||
window_data = self._parse_json(self._search_regex(
|
||||
|
|
Loading…
Reference in a new issue