mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
fixed nextup node
This commit is contained in:
parent
b6af96f8c0
commit
68c7c7ac64
1 changed files with 2 additions and 1 deletions
|
@ -198,7 +198,8 @@ class VideoNodes():
|
||||||
label = language(30179)
|
label = language(30179)
|
||||||
etree.SubElement(root, "label").text = label
|
etree.SubElement(root, "label").text = label
|
||||||
etree.SubElement(root, "content").text = "episodes"
|
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"
|
etree.SubElement(root, "icon").text = "special://home/addons/plugin.video.emby/icon.png"
|
||||||
WINDOW.setProperty("Emby.nodes.%s.nextepisodes.title" %str(windowPropId),label)
|
WINDOW.setProperty("Emby.nodes.%s.nextepisodes.title" %str(windowPropId),label)
|
||||||
path = "library://video/Emby - %s/%s_nextup_episodes.xml"%(tagname,tagname)
|
path = "library://video/Emby - %s/%s_nextup_episodes.xml"%(tagname,tagname)
|
||||||
|
|
Loading…
Reference in a new issue