removed iteminfo dialog stuff because that is never going to work with this addon

fix for wrong entries in episodes widgets/submenus
This commit is contained in:
Marcel van der Veldt 2015-05-08 19:05:10 +02:00
parent 105d863979
commit 684d8604ca
9 changed files with 19 additions and 1214 deletions

View file

@ -27,21 +27,9 @@ except:
mode = None
##### Play items via plugin://plugin.video.emby/ #####
if mode == "play":
addonSettings = xbmcaddon.Addon(id='plugin.video.emby')
selectAction = addonSettings.getSetting('selectAction')
##### info only working from widgets currently #####
if selectAction == "1" and xbmc.getCondVisibility("Window.IsActive(home)"):
entrypoint.showInfo(id)
else:
entrypoint.doPlayback(id)
elif mode == "playnow":
if mode == "play" or mode == "playnow":
entrypoint.doPlayback(id)
elif mode == "person":
entrypoint.showPersonInfo(id,name)
##### DO DATABASE RESET #####
elif mode == "reset":
utils.reset()