diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2026-08-22 07:01:58 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2026-08-22 07:01:58 +0200 |
| commit | 7ad5ff6aa7804855e6805495f6c9ebcf6d459a11 (patch) | |
| tree | 04a8482646e1559ce38114ec42b6ffd1a9dafc08 /Emby.Server.Implementations/Session | |
| parent | 40a449c6f23feb4ebebdfd20e3cba39f49d441f6 (diff) | |
| parent | 9fa0533506d299537b2295183115b8c1f15b2fa0 (diff) | |
Merge remote-tracking branch 'upstream/master' into optimize-db-helper-memory
# Conflicts:
# src/Jellyfin.Database/Jellyfin.Database.Providers.Sqlite/Migrations/JellyfinDbModelSnapshot.cs
Diffstat (limited to 'Emby.Server.Implementations/Session')
| -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) |
