--- misc/xbmc/plugin.video.todic/default.py 2016/11/25 16:17:45 3152 +++ misc/xbmc/plugin.video.todic/default.py 2016/11/25 19:38:05 3153 @@ -3,7 +3,7 @@ ''' Todic plugin for XBMC - Version 0.1.0 + Version 0.1.1 ''' import sys @@ -88,6 +88,8 @@ self.codecdetails = getText(detailsDoc.getElementsByTagName("codecdetails")) self.position = int( getText(detailsDoc.getElementsByTagName("position")) ) + def setUrl(self, url): + self.url = url def setName(self, name): self.name = name @@ -304,6 +306,7 @@ d = TodicMovieDialog() d.setDetailsDoc(clipDetailsDoc) d.setName(name) + d.setUrl(url) d.setDescription(description) d.doModal()