Skip to content

Commit

Permalink
fix is_file printing error message each time a url is passed
Browse files Browse the repository at this point in the history
- remove print to osd on false result
- remove log messages
- change to check if not local file first when adding to queue
  • Loading branch information
ksyasuda committed Aug 8, 2023
1 parent e88e7f7 commit cd3e37d
Showing 1 changed file with 11 additions and 16 deletions.
27 changes: 11 additions & 16 deletions mpv-youtube-queue.lua
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,8 @@ end

-- returns true if the provided path exists and is a file
local function is_file(filepath)
mp.msg.info("FILEPATH: " .. filepath)
local result = utils.file_info(filepath)
if result == nil then
print_osd_message("File not found: " .. filepath, 3, style.error)
return false
end
return result.is_file
Expand Down Expand Up @@ -454,20 +452,7 @@ function YouTubeQueue.add_to_queue(url, update_internal_playlist)
end

local video, channel_url, channel_name, video_name, video_url
if is_file(url) then
video_url = url
channel_url, video_name = split_path(video_url)
mp.msg.info("channel_url: " .. channel_url)
mp.msg.info("video_name: " .. video_name)
channel_name = "Local file"

video = {
video_url = video_url,
video_name = video_name,
channel_url = channel_url,
channel_name = channel_name
}
else
if not is_file(url) then
channel_url, channel_name, video_name = YouTubeQueue.get_video_info(url)
url = remove_quotes(url)
if (channel_url == nil or channel_name == nil or video_name == nil) or
Expand All @@ -482,6 +467,16 @@ function YouTubeQueue.add_to_queue(url, update_internal_playlist)
channel_name = channel_name
}
end
else
channel_url, video_name = split_path(video_url)
channel_name = "Local file"

video = {
video_url = url,
video_name = video_name,
channel_url = channel_url,
channel_name = "Local file"
}
end

table.insert(video_queue, video)
Expand Down

0 comments on commit cd3e37d

Please sign in to comment.