diff options
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 230680ff2..5b2208333 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -86,12 +86,6 @@ namespace MediaBrowser.Model.Configuration public string[] SortRemoveWords { get; set; } /// <summary> - /// Show an output log window for debugging - /// </summary> - /// <value><c>true</c> if [show log window]; otherwise, <c>false</c>.</value> - public bool ShowLogWindow { get; set; } - - /// <summary> /// Gets or sets the minimum percentage of an item that must be played in order for playstate to be updated. /// </summary> /// <value>The min resume PCT.</value> @@ -176,7 +170,7 @@ namespace MediaBrowser.Model.Configuration public PeopleMetadataOptions PeopleMetadataOptions { get; set; } public bool FindInternetTrailers { get; set; } - public string[] InsecureApps2 { get; set; } + public string[] InsecureApps6 { get; set; } public bool SaveMetadataHidden { get; set; } @@ -228,12 +222,19 @@ namespace MediaBrowser.Model.Configuration PeopleMetadataOptions = new PeopleMetadataOptions(); - InsecureApps2 = new[] + InsecureApps6 = new[] { "Roku", "Chromecast", "iOS", - "Windows Phone" + "Windows Phone", + "Windows RT", + "Xbmc", + "Unknown app", + "MediaPortal", + "Media Portal", + "iPad", + "iPhone" }; MetadataOptions = new[] |
