mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-06 00:06:13 +00:00
(finally) fixed the video node sublevels filtered on tagname with episodes
This commit is contained in:
parent
aeff7778e1
commit
1e61c9edc8
3 changed files with 108 additions and 51 deletions
|
@ -62,6 +62,15 @@ elif mode == "nextup":
|
|||
limit = int(params['limit'])
|
||||
entrypoint.getNextUpEpisodes(id, limit)
|
||||
|
||||
##### GET INPROGRESS EPISODES FOR TAGNAME #####
|
||||
elif mode == "inprogressepisodes":
|
||||
limit = int(params['limit'])
|
||||
entrypoint.getInProgressEpisodes(id, limit)
|
||||
|
||||
##### GET RECENT EPISODES FOR TAGNAME #####
|
||||
elif mode == "recentepisodes":
|
||||
limit = int(params['limit'])
|
||||
entrypoint.getRecentEpisodes(id, limit)
|
||||
|
||||
##### GET EXTRAFANART FOR LISTITEM #####
|
||||
elif "extrafanart" in sys.argv[0]:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue