소스 검색

Don't dispose the connection

Claus Vium 6 년 전
부모
커밋
17ca23d73b
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      MediaBrowser.Controller/Net/BasePeriodicWebSocketListener.cs

+ 2 - 1
MediaBrowser.Controller/Net/BasePeriodicWebSocketListener.cs

@@ -199,7 +199,8 @@ namespace MediaBrowser.Controller.Net
         {
             Logger.LogDebug("{1} stop transmitting over websocket to {0}", connection.Item1.RemoteEndPoint, GetType().Name);
 
-            connection.Item1.Dispose();
+            // TODO disposing the connection seems to break websockets in subtle ways, so what is the purpose of this function really...
+            // connection.Item1.Dispose();
 
             try
             {