summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--player/lua/ytdl_hook.lua17
1 files changed, 8 insertions, 9 deletions
diff --git a/player/lua/ytdl_hook.lua b/player/lua/ytdl_hook.lua
index 8aef3e4540..f20eed70d1 100644
--- a/player/lua/ytdl_hook.lua
+++ b/player/lua/ytdl_hook.lua
@@ -396,12 +396,15 @@ mp.add_hook("on_load", 10, function ()
return
end
+ local self_redirecting_url =
+ json.entries[1]["_type"] ~= "url_transparent" and
+ json.entries[1]["webpage_url"] and
+ json.entries[1]["webpage_url"] == json["webpage_url"]
+
-- some funky guessing to detect multi-arc videos
- if (not (json.entries[1]["_type"] == "url_transparent")) and
- (not (json.entries[1]["webpage_url"] == nil)
- and (json.entries[1]["webpage_url"] == json["webpage_url"]))
- and not (json.entries[1].url == nil) then
+ if self_redirecting_url and #json.entries > 1
+ and json.entries[1].url then
msg.verbose("multi-arc video detected, building EDL")
local playlist = edl_track_joined(json.entries)
@@ -446,11 +449,7 @@ mp.add_hook("on_load", 10, function ()
end
end
- elseif (not (json.entries[1]["_type"] == "url_transparent")) and
- (not (json.entries[1]["webpage_url"] == nil)
- and (json.entries[1]["webpage_url"] == json["webpage_url"]))
- and (#json.entries == 1) then
-
+ elseif self_redirecting_url then
msg.verbose("Playlist with single entry detected.")
add_single_video(json.entries[1])
else