aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
diff options
context:
space:
mode:
authorMichalis Adamidis <gsnerf@gsnerf.de>2014-08-06 01:29:56 +0200
committerMichalis Adamidis <gsnerf@gsnerf.de>2014-08-06 01:29:56 +0200
commit7994f0dcd9082cc657e07dbff6ecc4e638f1f527 (patch)
treea62175934f5c563c2fcb37ecccd8b014189a35c9 /MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
parenta118169a3ccf3361a5920794c7762dfcff1babd2 (diff)
parent7e25c857a551ce06025b3b85996aef7ed3c6571e (diff)
Merge remote-tracking branch 'official/master'
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs')
-rw-r--r--MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
index 6e0b654fd..90b77828b 100644
--- a/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
+++ b/MediaBrowser.Server.Implementations/HttpServer/HttpListenerHost.cs
@@ -152,7 +152,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
HostContext.Config.HandlerFactoryPath = ListenerRequest.GetHandlerPathIfAny(UrlPrefixes.First());
_listener = NativeWebSocket.IsSupported
- ? _listener = new HttpListenerServer(_logger)
+ ? _listener = new WebSocketSharpListener(_logger)
: _listener = new WebSocketSharpListener(_logger);
_listener.WebSocketHandler = WebSocketHandler;