From d561cef81ffa60802276e3be119e09c1c21c635e Mon Sep 17 00:00:00 2001 From: Mason Weigand Date: Mon, 23 Jun 2025 10:31:25 -0400 Subject: [PATCH] RemoveNowPlayingItem should also set FullNowPlayingItem to null (#14360) bb --- Emby.Server.Implementations/Session/SessionManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index ad91cd6424..cf2ca047cf 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))