From 61c8803a7120918db5040e48323862d320ec247e Mon Sep 17 00:00:00 2001 From: DinuD Date: Wed, 15 Nov 2023 20:50:38 +0000 Subject: [PATCH] Disable sync correction by default --- CONTRIBUTORS.md | 1 + src/plugins/syncPlay/core/PlaybackCore.js | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 7b5e4aeccd..eb5f1ce357 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -72,6 +72,7 @@ - [LittleBigOwI] (https://github.com/LittleBigOwI/) - [Nate G](https://github.com/GGProGaming) - [Grady Hallenbeck](https://github.com/grhallenbeck) + - [DinuD](https://github.com/DinuD) # Emby Contributors diff --git a/src/plugins/syncPlay/core/PlaybackCore.js b/src/plugins/syncPlay/core/PlaybackCore.js index effa1cab62..73ab977eb6 100644 --- a/src/plugins/syncPlay/core/PlaybackCore.js +++ b/src/plugins/syncPlay/core/PlaybackCore.js @@ -3,7 +3,6 @@ * @module components/syncPlay/core/PlaybackCore */ -import browser from '../../../scripts/browser'; import Events from '../../../utils/events.ts'; import { toBoolean, toFloat } from '../../../utils/string.ts'; import * as Helper from './Helper'; @@ -67,7 +66,7 @@ class PlaybackCore { this.useSkipToSync = toBoolean(getSetting('useSkipToSync'), true); // Whether sync correction during playback is active. - this.enableSyncCorrection = toBoolean(getSetting('enableSyncCorrection'), !(browser.mobile || browser.iOS)); + this.enableSyncCorrection = toBoolean(getSetting('enableSyncCorrection'), false); } /**