mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-02 22:36:12 +00:00
fixed issue with recently added episodes Entry
support for Kodi 16 in entrypoints creation
This commit is contained in:
parent
9c639d47ca
commit
214dc1ed87
3 changed files with 4 additions and 6 deletions
|
@ -81,17 +81,17 @@ class Main:
|
|||
|
||||
##### GET NEXTUP EPISODES FOR TAGNAME #####
|
||||
elif "nextup" in mode:
|
||||
limit = params['limit'][0]
|
||||
limit = int(params['limit'][0])
|
||||
entrypoint.getNextUpEpisodes(id, limit)
|
||||
|
||||
##### GET INPROGRESS EPISODES FOR TAGNAME #####
|
||||
elif "inprogressepisodes" in mode:
|
||||
limit = params['limit'][0]
|
||||
limit = int(params['limit'][0])
|
||||
entrypoint.getInProgressEpisodes(id, limit)
|
||||
|
||||
##### GET RECENT EPISODES FOR TAGNAME #####
|
||||
elif "recentepisodes" in mode:
|
||||
limit = params['limit'][0]
|
||||
limit = int(params['limit'][0])
|
||||
entrypoint.getRecentEpisodes(id, limit)
|
||||
|
||||
##### GET EXTRAFANART FOR LISTITEM #####
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue