mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-09-20 21:44:38 +00:00
some more changes to the playback
This commit is contained in:
parent
bc09e570fd
commit
367b658a29
2 changed files with 7 additions and 2 deletions
|
@ -204,7 +204,11 @@ class Player( xbmc.Player ):
|
|||
self.stopAll()
|
||||
|
||||
if xbmcplayer.isPlaying():
|
||||
currentFile = xbmcplayer.getPlayingFile()
|
||||
|
||||
currentFile = ""
|
||||
try:
|
||||
currentFile = xbmcplayer.getPlayingFile()
|
||||
except: pass
|
||||
self.logMsg("onPlayBackStarted: %s" % currentFile, 0)
|
||||
|
||||
# we may need to wait until the info is available
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue