More relaxed sync settings

This commit is contained in:
Sam 2018-07-24 16:46:34 +10:00
parent 73dd7c7ef5
commit f3671ff5af
2 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ const mutations = {
}
let interval = state.settings.CLIENTPOLLINTERVAL
if (state.chosenClient.clientIdentifier === 'PTPLAYER9PLUS10') {
interval = 200
interval = 500
}
setTimeout(() => {
clientPoller(time)

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 > 500) {
if (this.clientIdentifier === 'PTPLAYER9PLUS10' && difference > 1000) {
console.log('Soft syncing because difference is', difference)
return resolve(await this.cleanSeek(hostTimeline.time, true))
} else {