Merge pull request #1416 from croneter/python3-fix-seek

Fix resume not working if Kodi player start-up is slow
This commit is contained in:
croneter 2021-03-19 18:49:02 +01:00 committed by GitHub
commit 63852cdcaf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ from . import playback_decision, app
LOG = getLogger('PLEX.playback')
# Do we need to return ultimately with a setResolvedUrl?
RESOLVE = True
TRY_TO_SEEK_FOR = 10 # =30 seconds
TRY_TO_SEEK_FOR = 300 # =300 seconds
IGNORE_SECONDS_AT_START = 15
###############################################################################