From c996d510853537697feb21e38ed34feffe227e4a Mon Sep 17 00:00:00 2001 From: croneter Date: Thu, 21 Mar 2019 20:22:41 +0100 Subject: [PATCH] Fix video node path for widgets --- resources/lib/library_sync/sections.py | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lib/library_sync/sections.py b/resources/lib/library_sync/sections.py index 800000e6..22a38f90 100644 --- a/resources/lib/library_sync/sections.py +++ b/resources/lib/library_sync/sections.py @@ -314,6 +314,7 @@ class Section(object): xml = getattr(nodes, 'node_%s' % node_type)(self, node_name) self._write_xml(xml, xml_name) self.order += 1 + path = 'library://video/Plex-%s/%s' % (self.section_id, xml_name) self._window_node(path, node_name, node_type, pms_node) def _write_xml(self, xml, xml_name):