aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Startup.Common/ApplicationHost.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-18 14:53:34 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-01-18 14:53:34 -0500
commitcefd565e67ce3b8225eb2fa8a7338dc4d85b458d (patch)
tree7bb3c8d272d64954212563513a30c02c6f00a893 /MediaBrowser.Server.Startup.Common/ApplicationHost.cs
parent5f76b59e67f64c1f24b5938808521f356a67039e (diff)
display server name in dashboard
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/ApplicationHost.cs')
-rw-r--r--MediaBrowser.Server.Startup.Common/ApplicationHost.cs14
1 files changed, 1 insertions, 13 deletions
diff --git a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs
index e15b60d47..3867fc243 100644
--- a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs
+++ b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs
@@ -460,19 +460,7 @@ namespace MediaBrowser.Server.Startup.Common
RegisterSingleInstance<ISearchEngine>(() => new SearchEngine(LogManager, LibraryManager, UserManager));
- if (IsFirstRun)
- {
- ServerConfigurationManager.Configuration.EnableWin8HttpListener = false;
- ServerConfigurationManager.SaveConfiguration();
- _supportsNativeWebSocket = false;
- }
-
- if (!ServerConfigurationManager.Configuration.EnableWin8HttpListener)
- {
- _supportsNativeWebSocket = false;
- }
-
- HttpServer = ServerFactory.CreateServer(this, LogManager, "Media Browser", "web/index.html", false);
+ HttpServer = ServerFactory.CreateServer(this, LogManager, "Media Browser", "web/index.html");
RegisterSingleInstance(HttpServer, false);
progress.Report(10);