mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-13 21:56:11 +00:00
Fix typo
This commit is contained in:
parent
47976c81be
commit
7b2d67a8bf
1 changed files with 3 additions and 3 deletions
|
@ -632,7 +632,7 @@ def getNextUpEpisodes(tagname, limit):
|
||||||
li = createListItem(episode)
|
li = createListItem(episode)
|
||||||
xbmcplugin.addDirectoryItem(
|
xbmcplugin.addDirectoryItem(
|
||||||
handle=int(sys.argv[1]),
|
handle=int(sys.argv[1]),
|
||||||
url=item['file'],
|
url=episode['file'],
|
||||||
listitem=li)
|
listitem=li)
|
||||||
count += 1
|
count += 1
|
||||||
|
|
||||||
|
@ -703,7 +703,7 @@ def getInProgressEpisodes(tagname, limit):
|
||||||
li = createListItem(episode)
|
li = createListItem(episode)
|
||||||
xbmcplugin.addDirectoryItem(
|
xbmcplugin.addDirectoryItem(
|
||||||
handle=int(sys.argv[1]),
|
handle=int(sys.argv[1]),
|
||||||
url=item['file'],
|
url=episode['file'],
|
||||||
listitem=li)
|
listitem=li)
|
||||||
count += 1
|
count += 1
|
||||||
|
|
||||||
|
@ -773,7 +773,7 @@ def getRecentEpisodes(tagname, limit):
|
||||||
li = createListItem(episode)
|
li = createListItem(episode)
|
||||||
xbmcplugin.addDirectoryItem(
|
xbmcplugin.addDirectoryItem(
|
||||||
handle=int(sys.argv[1]),
|
handle=int(sys.argv[1]),
|
||||||
url=item['file'],
|
url=episode['file'],
|
||||||
listitem=li)
|
listitem=li)
|
||||||
count += 1
|
count += 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue