ソースを参照

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

Mason Weigand 3 日 前
コミット
d561cef81f
1 ファイル変更1 行追加0 行削除
  1. 1 0
      Emby.Server.Implementations/Session/SessionManager.cs

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