mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
Add extra verification for playback
Prevent false detection of widget playback if happen to be on home and resuming with Play-to emby function.
This commit is contained in:
parent
ff98b7fa30
commit
e4f4900499
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ class PlaybackUtils():
|
||||||
|
|
||||||
############### PLAYBACK ################
|
############### PLAYBACK ################
|
||||||
|
|
||||||
if homeScreen and seektime:
|
if homeScreen and seektime and utils.window('emby_customPlaylist') != "true":
|
||||||
self.logMsg("Play as a widget item.", 1)
|
self.logMsg("Play as a widget item.", 1)
|
||||||
self.setListItem(listitem)
|
self.setListItem(listitem)
|
||||||
xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, listitem)
|
xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, listitem)
|
||||||
|
|
Loading…
Reference in a new issue