Remove obsolete argument
This commit is contained in:
parent
2037ba432b
commit
18c6d8f784
2 changed files with 2 additions and 3 deletions
|
@ -73,8 +73,7 @@ class Main():
|
||||||
int(params.get('limit')))
|
int(params.get('limit')))
|
||||||
|
|
||||||
elif mode == 'recentepisodes':
|
elif mode == 'recentepisodes':
|
||||||
entrypoint.recent_episodes(itemid,
|
entrypoint.recent_episodes(params.get('type'),
|
||||||
params.get('type'),
|
|
||||||
params.get('tagname'),
|
params.get('tagname'),
|
||||||
int(params.get('limit')))
|
int(params.get('limit')))
|
||||||
|
|
||||||
|
|
|
@ -375,7 +375,7 @@ def in_progress_episodes(tagname, limit):
|
||||||
xbmcplugin.endOfDirectory(handle=HANDLE)
|
xbmcplugin.endOfDirectory(handle=HANDLE)
|
||||||
|
|
||||||
|
|
||||||
def recent_episodes(viewid, mediatype, tagname, limit):
|
def recent_episodes(mediatype, tagname, limit):
|
||||||
"""
|
"""
|
||||||
List the recently added episodes for tagname
|
List the recently added episodes for tagname
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue