浏览代码

fix null reference in web socket connection

Luke Pulverenti 10 年之前
父节点
当前提交
a11c4d0b08
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      MediaBrowser.Server.Implementations/Session/SessionWebSocketListener.cs

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