From 68c7c7ac64a7985492ccb59fbf382de1d4fe7fd6 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Fri, 8 May 2015 19:10:58 +0200 Subject: [PATCH] fixed nextup node --- resources/lib/VideoNodes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/lib/VideoNodes.py b/resources/lib/VideoNodes.py index 0327b8d6..bf58af06 100644 --- a/resources/lib/VideoNodes.py +++ b/resources/lib/VideoNodes.py @@ -198,7 +198,8 @@ class VideoNodes(): label = language(30179) etree.SubElement(root, "label").text = label etree.SubElement(root, "content").text = "episodes" - etree.SubElement(root, "path").text = nodefile_root + path = "plugin://plugin.video.emby/?id=%s&mode=nextup&limit=25" %tagname + etree.SubElement(root, "path").text = path etree.SubElement(root, "icon").text = "special://home/addons/plugin.video.emby/icon.png" WINDOW.setProperty("Emby.nodes.%s.nextepisodes.title" %str(windowPropId),label) path = "library://video/Emby - %s/%s_nextup_episodes.xml"%(tagname,tagname)