mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-06 08:16:13 +00:00
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:
parent
105d863979
commit
684d8604ca
9 changed files with 19 additions and 1214 deletions
16
default.py
16
default.py
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue