added null check to web socket

This commit is contained in:
Luke Pulverenti 2015-03-16 10:40:33 -04:00
parent dcf8e4c4b5
commit ca492d105e
2 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer.SocketSharp
{
var endpoint = ctx.Request.RemoteEndPoint.ToString();
var url = ctx.Request.RawUrl;
var queryString = new NameValueCollection(ctx.Request.QueryString);
var queryString = new NameValueCollection(ctx.Request.QueryString ?? new NameValueCollection());
var connectingArgs = new WebSocketConnectingEventArgs
{

View File

@ -147,7 +147,7 @@ namespace MediaBrowser.Server.Implementations.ServerManager
{
OnReceive = ProcessWebSocketMessageReceived,
Url = e.Url,
QueryString = new NameValueCollection(e.QueryString)
QueryString = new NameValueCollection(e.QueryString ?? new NameValueCollection())
};
_webSocketConnections.Add(connection);