mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06: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)
|
||||
xbmcplugin.addDirectoryItem(
|
||||
handle=int(sys.argv[1]),
|
||||
url=item['file'],
|
||||
url=episode['file'],
|
||||
listitem=li)
|
||||
count += 1
|
||||
|
||||
|
@ -703,7 +703,7 @@ def getInProgressEpisodes(tagname, limit):
|
|||
li = createListItem(episode)
|
||||
xbmcplugin.addDirectoryItem(
|
||||
handle=int(sys.argv[1]),
|
||||
url=item['file'],
|
||||
url=episode['file'],
|
||||
listitem=li)
|
||||
count += 1
|
||||
|
||||
|
@ -773,7 +773,7 @@ def getRecentEpisodes(tagname, limit):
|
|||
li = createListItem(episode)
|
||||
xbmcplugin.addDirectoryItem(
|
||||
handle=int(sys.argv[1]),
|
||||
url=item['file'],
|
||||
url=episode['file'],
|
||||
listitem=li)
|
||||
count += 1
|
||||
|
||||
|
|
Loading…
Reference in a new issue