aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer/NetListener/HttpListenerServer.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-06 23:03:38 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-10-06 23:03:38 -0400
commit28d4c54de8c6402b44da81314435bb70dac63635 (patch)
tree2bb6a67e99d21dc1f2ffa5cc03d09e1ded5454d0 /MediaBrowser.Server.Implementations/HttpServer/NetListener/HttpListenerServer.cs
parent1cf1ec6b615ec6d8b9fd4181b948dc65de465a58 (diff)
updated nuget
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/NetListener/HttpListenerServer.cs')
-rw-r--r--MediaBrowser.Server.Implementations/HttpServer/NetListener/HttpListenerServer.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/NetListener/HttpListenerServer.cs b/MediaBrowser.Server.Implementations/HttpServer/NetListener/HttpListenerServer.cs
index e73738e4e..4ea0a65f0 100644
--- a/MediaBrowser.Server.Implementations/HttpServer/NetListener/HttpListenerServer.cs
+++ b/MediaBrowser.Server.Implementations/HttpServer/NetListener/HttpListenerServer.cs
@@ -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)