add check in add to queue function to make sure url is a youtube video

This commit is contained in:
ksyasuda 2023-08-06 01:00:42 -07:00
parent 1bd0aa7c58
commit bfb7988c70

View File

@ -406,12 +406,14 @@ function YouTubeQueue.add_to_queue(url)
return
end
end
if not string.match(url, "^https://www.youtube.com") then
print_osd_message("URL is not a valid YouTube URL", MSG_DURATION,
style.error)
return
end
if YouTubeQueue.is_in_queue(url) then
print_osd_message("Video already in queue.", MSG_DURATION, style.error)
return
-- elseif not is_valid_ytdlp_url(url) then
-- mp.osd_message("Invalid URL.")
-- return
end
local channel_url, channel_name, video_name = get_video_info(url)
if (channel_url == nil or channel_name == nil or video_name == nil) or