From f3671ff5af43809ca669670d26e2a3c8c1d708e1 Mon Sep 17 00:00:00 2001 From: Sam Date: Tue, 24 Jul 2018 16:46:34 +1000 Subject: [PATCH] More relaxed sync settings --- src/store.js | 2 +- src/store/modules/plex/helpers/PlexClient.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store.js b/src/store.js index 5627b121..72e338ab 100644 --- a/src/store.js +++ b/src/store.js @@ -116,7 +116,7 @@ const mutations = { } let interval = state.settings.CLIENTPOLLINTERVAL if (state.chosenClient.clientIdentifier === 'PTPLAYER9PLUS10') { - interval = 200 + interval = 500 } setTimeout(() => { clientPoller(time) diff --git a/src/store/modules/plex/helpers/PlexClient.js b/src/store/modules/plex/helpers/PlexClient.js index 59ef219e..685010b3 100644 --- a/src/store/modules/plex/helpers/PlexClient.js +++ b/src/store/modules/plex/helpers/PlexClient.js @@ -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 {