From e9fb806478e974b200b54f8acff5eb09bdef4c32 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 28 Apr 2014 23:56:20 -0400 Subject: 3.0.5231.40980 --- MediaBrowser.Model/Configuration/ServerConfiguration.cs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs') diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 03857d8b9..0d2c1066b 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -32,7 +32,7 @@ namespace MediaBrowser.Model.Configuration /// /// true if [enable u pn p]; otherwise, false. public bool EnableUPnP { get; set; } - + /// /// Gets or sets the HTTP server port number. /// @@ -62,7 +62,7 @@ namespace MediaBrowser.Model.Configuration /// /// The metadata path. public string MetadataPath { get; set; } - + /// /// Gets or sets the display name of the season zero. /// @@ -220,13 +220,16 @@ namespace MediaBrowser.Model.Configuration public string WanDdns { get; set; } public string UICulture { get; set; } - + public DlnaOptions DlnaOptions { get; set; } public double DownMixAudioBoost { get; set; } public NotificationOptions NotificationOptions { get; set; } + [Obsolete("Please use RequireManualLoginForMobileApps")] + public string[] ManualLoginClients { get; set; } + /// /// Initializes a new instance of the class. /// @@ -292,6 +295,8 @@ namespace MediaBrowser.Model.Configuration UICulture = "en-us"; NotificationOptions = new NotificationOptions(); + + ManualLoginClients = new string[] { }; } } -- cgit v1.2.3