Remove obsolete argument

This commit is contained in:
Croneter 2018-06-15 14:01:09 +02:00
parent 2037ba432b
commit 18c6d8f784
2 changed files with 2 additions and 3 deletions

View File

@ -73,8 +73,7 @@ class Main():
int(params.get('limit')))
elif mode == 'recentepisodes':
entrypoint.recent_episodes(itemid,
params.get('type'),
entrypoint.recent_episodes(params.get('type'),
params.get('tagname'),
int(params.get('limit')))

View File

@ -375,7 +375,7 @@ def in_progress_episodes(tagname, limit):
xbmcplugin.endOfDirectory(handle=HANDLE)
def recent_episodes(viewid, mediatype, tagname, limit):
def recent_episodes(mediatype, tagname, limit):
"""
List the recently added episodes for tagname
"""