Slightly more lenient soft-seek

This commit is contained in:
Sam 2018-08-12 14:19:36 +10:00
parent 93c3b157c1
commit 9b13f2dc06
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ module.exports = function PlexClient () {
// Fall back to skipahead
return resolve(await this.skipAhead(hostTimeline.time, 10000))
}
if (this.clientIdentifier === 'PTPLAYER9PLUS10' && difference > 1000) {
if (this.clientIdentifier === 'PTPLAYER9PLUS10' && difference > 1500) {
console.log('Soft syncing because difference is', difference)
return resolve(await this.cleanSeek(hostTimeline.time, true))
} else {