diff options
| author | Cody Robibero <cody@robibe.ro> | 2026-08-18 17:12:00 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-18 17:12:00 -0400 |
| commit | 4a659fb30cbf220f2692a086e42b8a45211026fc (patch) | |
| tree | 81e4f9628f699b3cf163ecfa011010921e3cd23a /Emby.Server.Implementations/Session/SessionManager.cs | |
| parent | c203da245d03fa231a7f2d862458193f81063b5f (diff) | |
| parent | f0c5370e27180011249a7ee5740f2999d5e73051 (diff) | |
Merge pull request #17631 from itsb/fix/confirmed-resume-position-master
Use client-reported position for idle playback cleanup
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionManager.cs')
| -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 5d62332552..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.PlayState?.PositionTicks + PositionTicks = session.LastPlaybackCheckInPositionTicks }).ConfigureAwait(false); } catch (Exception ex) |
