From ac8ffb8db0a41607cba9f8d3576a9f6643ac86bb Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 25 Jan 2014 16:07:19 -0500 Subject: Added IAppHost.Name --- MediaBrowser.ServerApplication/ApplicationHost.cs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.ServerApplication') diff --git a/MediaBrowser.ServerApplication/ApplicationHost.cs b/MediaBrowser.ServerApplication/ApplicationHost.cs index 045c9f18c6..b78a0f36d0 100644 --- a/MediaBrowser.ServerApplication/ApplicationHost.cs +++ b/MediaBrowser.ServerApplication/ApplicationHost.cs @@ -185,6 +185,18 @@ namespace MediaBrowser.ServerApplication } + /// + /// Gets the name. + /// + /// The name. + public override string Name + { + get + { + return "Media Browser Server"; + } + } + /// /// Gets a value indicating whether this instance can self restart. /// @@ -732,7 +744,7 @@ namespace MediaBrowser.ServerApplication { ServerAuthorization.AuthorizeServer( ServerConfigurationManager.Configuration.HttpServerPortNumber, - HttpServerUrlPrefixes.First(), + HttpServerUrlPrefixes.First(), ServerConfigurationManager.Configuration.LegacyWebSocketPortNumber, UdpServerEntryPoint.PortNumber, ConfigurationManager.CommonApplicationPaths.TempDirectory); -- cgit v1.2.3