mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #5003 from DinuD/disable-sync-correction
Disable sync correction by default for SyncPlay
This commit is contained in:
commit
ef423be9f7
2 changed files with 2 additions and 2 deletions
|
@ -72,6 +72,7 @@
|
||||||
- [LittleBigOwI] (https://github.com/LittleBigOwI/)
|
- [LittleBigOwI] (https://github.com/LittleBigOwI/)
|
||||||
- [Nate G](https://github.com/GGProGaming)
|
- [Nate G](https://github.com/GGProGaming)
|
||||||
- [Grady Hallenbeck](https://github.com/grhallenbeck)
|
- [Grady Hallenbeck](https://github.com/grhallenbeck)
|
||||||
|
- [DinuD](https://github.com/DinuD)
|
||||||
|
|
||||||
# Emby Contributors
|
# Emby Contributors
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
* @module components/syncPlay/core/PlaybackCore
|
* @module components/syncPlay/core/PlaybackCore
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import browser from '../../../scripts/browser';
|
|
||||||
import Events from '../../../utils/events.ts';
|
import Events from '../../../utils/events.ts';
|
||||||
import { toBoolean, toFloat } from '../../../utils/string.ts';
|
import { toBoolean, toFloat } from '../../../utils/string.ts';
|
||||||
import * as Helper from './Helper';
|
import * as Helper from './Helper';
|
||||||
|
@ -67,7 +66,7 @@ class PlaybackCore {
|
||||||
this.useSkipToSync = toBoolean(getSetting('useSkipToSync'), true);
|
this.useSkipToSync = toBoolean(getSetting('useSkipToSync'), true);
|
||||||
|
|
||||||
// Whether sync correction during playback is active.
|
// Whether sync correction during playback is active.
|
||||||
this.enableSyncCorrection = toBoolean(getSetting('enableSyncCorrection'), !(browser.mobile || browser.iOS));
|
this.enableSyncCorrection = toBoolean(getSetting('enableSyncCorrection'), false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue