More relaxed sync settings
This commit is contained in:
parent
73dd7c7ef5
commit
f3671ff5af
|
@ -116,7 +116,7 @@ const mutations = {
|
|||
}
|
||||
let interval = state.settings.CLIENTPOLLINTERVAL
|
||||
if (state.chosenClient.clientIdentifier === 'PTPLAYER9PLUS10') {
|
||||
interval = 200
|
||||
interval = 500
|
||||
}
|
||||
setTimeout(() => {
|
||||
clientPoller(time)
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue