From e4f4900499f6b52d347f40a69afab74f977be619 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Sun, 31 Jan 2016 17:28:41 -0600 Subject: [PATCH] Add extra verification for playback Prevent false detection of widget playback if happen to be on home and resuming with Play-to emby function. --- resources/lib/playbackutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/playbackutils.py b/resources/lib/playbackutils.py index 8bedc8d1..65c1d8b9 100644 --- a/resources/lib/playbackutils.py +++ b/resources/lib/playbackutils.py @@ -197,7 +197,7 @@ class PlaybackUtils(): ############### PLAYBACK ################ - if homeScreen and seektime: + if homeScreen and seektime and utils.window('emby_customPlaylist') != "true": self.logMsg("Play as a widget item.", 1) self.setListItem(listitem) xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, listitem)