updated nuget

This commit is contained in:
Luke Pulverenti
2014-10-06 23:03:38 -04:00
parent 1cf1ec6b61
commit 28d4c54de8
7 changed files with 27 additions and 9 deletions

View File

@@ -161,7 +161,6 @@ namespace MediaBrowser.Server.Implementations.HttpServer.NetListener
/// <returns>Task.</returns>
private async Task ProcessWebSocketRequest(HttpListenerContext ctx)
{
#if !__MonoCS__
try
{
var webSocketContext = await ctx.AcceptWebSocketAsync(null).ConfigureAwait(false);
@@ -181,7 +180,6 @@ namespace MediaBrowser.Server.Implementations.HttpServer.NetListener
ctx.Response.StatusCode = 500;
ctx.Response.Close();
}
#endif
}
private void HandleError(Exception ex, HttpListenerContext context)