mirror of
https://github.com/mpv-player/mpv
synced 2025-01-24 16:43:28 +00:00
TOOLS/lua/autoload: don't run if playlist is loaded
This commit is contained in:
parent
91b9dcf800
commit
dfd8a5ff06
@ -47,6 +47,10 @@ function find_and_add_entries()
|
||||
if #dir == 0 then
|
||||
return
|
||||
end
|
||||
local isplaylist = mp.get_property("playlist-count")
|
||||
if #isplaylist > 1 then
|
||||
return
|
||||
end
|
||||
|
||||
local files = mputils.readdir(dir, "files")
|
||||
if files == nil then
|
||||
|
Loading…
Reference in New Issue
Block a user