mirror of https://github.com/mpv-player/mpv
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