소스 검색

Clear active sessions on application stopping

Patrick Barron 1 년 전
부모
커밋
59ec06c35c
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      Emby.Server.Implementations/Session/SessionManager.cs

+ 2 - 0
Emby.Server.Implementations/Session/SessionManager.cs

@@ -1823,6 +1823,8 @@ namespace Emby.Server.Implementations.Session
             {
                 await session.DisposeAsync().ConfigureAwait(false);
             }
+
+            _activeConnections.Clear();
         }
     }
 }