Przeglądaj źródła

RemoveNowPlayingItem should also set FullNowPlayingItem to null (#14360) bb

Mason Weigand 1 dzień temu
rodzic
commit
d561cef81f

+ 1 - 0
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))