diff options
| author | itsb <itsb@users.noreply.github.com> | 2026-08-16 09:09:18 -0500 |
|---|---|---|
| committer | itsb <itsb@users.noreply.github.com> | 2026-08-16 09:09:18 -0500 |
| commit | f0c5370e27180011249a7ee5740f2999d5e73051 (patch) | |
| tree | 9cbb6ddab6f5a883b3e1135be1030b5a6d90e969 /Emby.Server.Implementations | |
| parent | 499e64b1c342bbab489407bb8059aa2684a12d8b (diff) | |
Preserve unknown idle playback position
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index cdd6cb4ce2..f4aa0ad03a 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/Emby.Server.Implementations/Session/SessionManager.cs @@ -655,7 +655,7 @@ namespace Emby.Server.Implementations.Session ItemId = session.NowPlayingItem is null ? Guid.Empty : session.NowPlayingItem.Id, SessionId = session.Id, MediaSourceId = session.PlayState?.MediaSourceId, - PositionTicks = session.LastPlaybackCheckInPositionTicks ?? 0 + PositionTicks = session.LastPlaybackCheckInPositionTicks }).ConfigureAwait(false); } catch (Exception ex) |
