You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while xbmc.Player().isPlaying() and not manualstart:
if self.monitor.waitForAbort(60 * 1000):
return 1 # wait one minute until next check for active playback
if not xbmc.Player().isPlaying():
if self.monitor.waitForAbort(180 * 1000):
return 1 # wait 3 minutes so the dialogue does not pop up directly after the playback ends
monitor.waitForAbort() takes seconds (not milliseconds) as a parameter :-)
The text was updated successfully, but these errors were encountered:
This seems to be an error introduced on the conversion from a hacky sleep-implemention to the monitor method back in April2016. It should be fixed with 8420e90e2.
SchapplM
changed the title
watchedlist patch
waiting time too long if periodic update starts during playback
Feb 16, 2019
This was also posted over in the Kodi forum...
monitor.waitForAbort() takes seconds (not milliseconds) as a parameter :-)
The text was updated successfully, but these errors were encountered: