mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[cspan] Unescape path (Closes #8365)
This commit is contained in:
parent
2b4f5e68d1
commit
68a0ea15b4
@ -113,7 +113,7 @@ def get_text_attr(d, attr):
|
||||
'tbr': int_or_none(get_text_attr(quality, 'bitrate')),
|
||||
})
|
||||
if not formats:
|
||||
path = get_text_attr(f, 'path')
|
||||
path = unescapeHTML(get_text_attr(f, 'path'))
|
||||
if not path:
|
||||
continue
|
||||
formats = self._extract_m3u8_formats(
|
||||
|
Loading…
Reference in New Issue
Block a user