From 4ea72584dbba2a425daeb20d8afcbae720f22269 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 19 Jan 2015 16:08:58 -0500 Subject: [PATCH] switch dashboard to key off of SupportsHttps --- MediaBrowser.Model/System/SystemInfo.cs | 2 +- MediaBrowser.Server.Startup.Common/ApplicationHost.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index ff9d822dd1..ce081d5f26 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -126,7 +126,7 @@ namespace MediaBrowser.Model.System /// Gets or sets a value indicating whether [enable HTTPS]. /// /// true if [enable HTTPS]; otherwise, false. - public bool EnableHttps { get; set; } + public bool SupportsHttps { get; set; } /// /// Gets or sets the HTTPS server port number. diff --git a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs index a3e389957b..2695ddaf69 100644 --- a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs +++ b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs @@ -1007,7 +1007,7 @@ namespace MediaBrowser.Server.Startup.Common CachePath = ApplicationPaths.CachePath, MacAddress = GetMacAddress(), HttpServerPortNumber = HttpPort, - EnableHttps = EnableHttps, + SupportsHttps = SupportsHttps, HttpsPortNumber = HttpsPort, OperatingSystem = OperatingSystemDisplayName, CanSelfRestart = CanSelfRestart,