mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
Fix typo
This commit is contained in:
parent
5d74dcedc4
commit
8f75f96909
1 changed files with 5 additions and 7 deletions
|
@ -29,10 +29,6 @@ class PlaybackUtils():
|
||||||
language = addon.getLocalizedString
|
language = addon.getLocalizedString
|
||||||
addonName = clientInfo.getAddonName()
|
addonName = clientInfo.getAddonName()
|
||||||
|
|
||||||
username = utils.window('currUser')
|
|
||||||
userid = utils.window('userId%s' % username)
|
|
||||||
server = utils.window('server%s' % username)
|
|
||||||
|
|
||||||
def logMsg(self, msg, lvl=1):
|
def logMsg(self, msg, lvl=1):
|
||||||
|
|
||||||
className = self.__class__.__name__
|
className = self.__class__.__name__
|
||||||
|
@ -44,7 +40,8 @@ class PlaybackUtils():
|
||||||
|
|
||||||
api = self.api
|
api = self.api
|
||||||
doUtils = self.doUtils
|
doUtils = self.doUtils
|
||||||
server = self.server
|
username = utils.window('currUser')
|
||||||
|
server = utils.window('server%s' % username)
|
||||||
|
|
||||||
listItem = xbmcgui.ListItem()
|
listItem = xbmcgui.ListItem()
|
||||||
id = result['Id']
|
id = result['Id']
|
||||||
|
@ -275,7 +272,7 @@ class PlaybackUtils():
|
||||||
|
|
||||||
doUtils = self.doUtils
|
doUtils = self.doUtils
|
||||||
|
|
||||||
playlist = xbmc.Playlist(xbmc.PLAYLIST_VIDEO)
|
playlist = xbmc.PlayList(xbmc.PLAYLIST_VIDEO)
|
||||||
playlist.clear()
|
playlist.clear()
|
||||||
started = False
|
started = False
|
||||||
|
|
||||||
|
@ -318,7 +315,8 @@ class PlaybackUtils():
|
||||||
def addPlaylistItem(self, playlist, item):
|
def addPlaylistItem(self, playlist, item):
|
||||||
|
|
||||||
id = item['Id']
|
id = item['Id']
|
||||||
server = self.server
|
username = utils.window('currUser')
|
||||||
|
server = utils.window('server%s' % username)
|
||||||
|
|
||||||
playurl = PlayUtils().getPlayUrl(server, id, item)
|
playurl = PlayUtils().getPlayUrl(server, id, item)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue