diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-24 22:00:19 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-04-24 22:00:19 -0400 |
| commit | eca1ba0b12da195dff3c31ffb799e4e3a7b5b5b9 (patch) | |
| tree | 436352b39c2c78e1b6731a9d44c09dd8407bed2f /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | 725e1a1509231650ae448d9eb7db55cce6fcd6bb (diff) | |
fixes #797 - Determine mpeg2ts timestamp info
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index ca5f569ed..325db34ed 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -168,8 +168,6 @@ namespace MediaBrowser.Model.Configuration /// <value>The dashboard source path.</value> public string DashboardSourcePath { get; set; } - public ManualLoginCategory[] ManualLoginClients { get; set; } - /// <summary> /// Gets or sets a value indicating whether [enable tv db updates]. /// </summary> @@ -178,6 +176,9 @@ namespace MediaBrowser.Model.Configuration public bool EnableTmdbUpdates { get; set; } public bool EnableFanArtUpdates { get; set; } + public bool RequireManualLoginForMobileApps { get; set; } + public bool RequireManualLoginForOtherApps { get; set; } + /// <summary> /// Gets or sets the image saving convention. /// </summary> @@ -256,7 +257,6 @@ namespace MediaBrowser.Model.Configuration EnableInternetProviders = true; //initial installs will need these - ManualLoginClients = new ManualLoginCategory[] { }; PathSubstitutions = new PathSubstitution[] { }; MetadataRefreshDays = 30; |
