diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2024-03-10 19:52:49 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2024-03-11 00:51:26 +0530 |
commit | 93240fc1848de4a94f25844c96e0dcd282ef1d3b (patch) | |
tree | 0008ef502170dfeec7a81181345c8b0942d1efa1 /yt_dlp/extractor/slideslive.py | |
parent | 47ab66db0f083a76c7fba0f6e136b21dd5a93e3b (diff) |
[cleanup] Fix misc bugs (#8968)
Closes #8816
Authored by: bashonly, seproDev, pukkandan, Grub4k
Diffstat (limited to 'yt_dlp/extractor/slideslive.py')
-rw-r--r-- | yt_dlp/extractor/slideslive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/slideslive.py b/yt_dlp/extractor/slideslive.py index df2af3b35..c012dee59 100644 --- a/yt_dlp/extractor/slideslive.py +++ b/yt_dlp/extractor/slideslive.py @@ -386,7 +386,7 @@ class SlidesLiveIE(InfoExtractor): if not line.startswith('#EXT-SL-'): continue tag, _, value = line.partition(':') - key = lookup.get(tag.lstrip('#EXT-SL-')) + key = lookup.get(tag[8:]) if not key: continue m3u8_dict[key] = value |