Explorar o código

fix null reference in web socket connection

Luke Pulverenti %!s(int64=10) %!d(string=hai) anos
pai
achega
a11c4d0b08

+ 4 - 0
MediaBrowser.Server.Implementations/Session/SessionWebSocketListener.cs

@@ -99,6 +99,10 @@ namespace MediaBrowser.Server.Implementations.Session
         private Task<SessionInfo> GetSession(NameValueCollection queryString, string remoteEndpoint)
         {
             var token = queryString["api_key"];
+            if (string.IsNullOrWhiteSpace(token))
+            {
+                return Task.FromResult<SessionInfo>(null);
+            }
             return _sessionManager.GetSessionByAuthenticationToken(token, remoteEndpoint);
         }