diff options
| author | Ionut Andrei Oanca <oancaionutandrei@gmail.com> | 2020-11-08 18:08:59 +0100 |
|---|---|---|
| committer | Ionut Andrei Oanca <oancaionutandrei@gmail.com> | 2020-11-13 20:55:14 +0100 |
| commit | 563a6fb3c7cd933059995cac710f46287774d401 (patch) | |
| tree | 0e7c66aeedd343e5a99f262e8d63f3bc55d85fff /Emby.Server.Implementations/SyncPlay/GroupController.cs | |
| parent | 019bc19aa41e1729f1893365133679d8b87e90d0 (diff) | |
Minor changes to group-wait in SyncPlay
Diffstat (limited to 'Emby.Server.Implementations/SyncPlay/GroupController.cs')
| -rw-r--r-- | Emby.Server.Implementations/SyncPlay/GroupController.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/SyncPlay/GroupController.cs b/Emby.Server.Implementations/SyncPlay/GroupController.cs index 01e1166171..ffd65d7f8a 100644 --- a/Emby.Server.Implementations/SyncPlay/GroupController.cs +++ b/Emby.Server.Implementations/SyncPlay/GroupController.cs @@ -29,6 +29,16 @@ namespace Emby.Server.Implementations.SyncPlay public long DefaultPing { get; } = 500; /// <summary> + /// Gets the maximum time offset error accepted for dates reported by clients, in milliseconds. + /// </summary> + public long TimeSyncOffset { get; } = 2000; + + /// <summary> + /// Gets the maximum offset error accepted for position reported by clients, in milliseconds. + /// </summary> + public long MaxPlaybackOffset { get; } = 500; + + /// <summary> /// The logger. /// </summary> private readonly ILogger _logger; |
