add live url to parser and test (#806)

Co-authored-by: funkecoder23 <funkecoder@DESKTOP-AMVOBPG>
This commit is contained in:
FunkeCoder23
2024-11-08 00:17:31 -05:00
committed by GitHub
parent b269f6ad90
commit 29ce05b57d
2 changed files with 4 additions and 0 deletions

View File

@@ -67,6 +67,9 @@ class Parser:
if all_paths[0] == "channel":
return self._validate_expected(all_paths[1], "channel")
if all_paths[0] == "live":
return self._validate_expected(all_paths[1], "video")
# detect channel
channel_id = self._extract_channel_name(parsed.geturl())
return {"type": "channel", "url": channel_id}