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); } /**