diff options
| author | Mason Weigand <Mason.Weigand@gmail.com> | 2025-06-23 10:31:25 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-23 08:31:25 -0600 |
| commit | d561cef81ffa60802276e3be119e09c1c21c635e (patch) | |
| tree | 96414cd99693555ecb7ee18147b14a95d40149d6 | |
| parent | b528c1100f1a9f069d4992de1b64b456e46af862 (diff) | |
RemoveNowPlayingItem should also set FullNowPlayingItem to null (#14360) bb
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index ad91cd642..cf2ca047c 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/Emby.Server.Implementations/Session/SessionManager.cs @@ -474,6 +474,7 @@ namespace Emby.Server.Implementations.Session private void RemoveNowPlayingItem(SessionInfo session) { session.NowPlayingItem = null; + session.FullNowPlayingItem = null; session.PlayState = new PlayerStateInfo(); if (!string.IsNullOrEmpty(session.DeviceId)) |
