mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-05 07:46:12 +00:00
Merge branch 'master' of https://github.com/MediaBrowser/Emby.Kodi
This commit is contained in:
commit
986a37455e
15 changed files with 1743 additions and 28 deletions
|
@ -21,6 +21,7 @@ try:
|
|||
params = utils.get_params(sys.argv[2])
|
||||
mode = params['mode']
|
||||
id = params.get('id', None)
|
||||
name = params.get('name',None)
|
||||
except:
|
||||
params = {}
|
||||
mode = None
|
||||
|
@ -28,6 +29,12 @@ except:
|
|||
##### Play items via plugin://plugin.video.emby/ #####
|
||||
if mode == "play":
|
||||
entrypoint.doPlayback(id)
|
||||
|
||||
elif mode == "info":
|
||||
entrypoint.showInfo(id)
|
||||
|
||||
elif mode == "person":
|
||||
entrypoint.showPersonInfo(id,name)
|
||||
|
||||
##### DO DATABASE RESET #####
|
||||
elif mode == "reset":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue