add setting to hide external content from suggestions

This commit is contained in:
Luke Pulverenti
2016-08-31 17:07:02 -04:00
parent 3862207a73
commit 699bdacebc
3 changed files with 51 additions and 33 deletions

View File

@@ -205,6 +205,7 @@ namespace MediaBrowser.Model.Configuration
public string[] LocalNetworkAddresses { get; set; }
public string[] CodecsUsed { get; set; }
public bool EnableChannelView { get; set; }
public bool EnableExternalContentInSuggestions { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
@@ -218,6 +219,7 @@ namespace MediaBrowser.Model.Configuration
EnableLocalizedGuids = true;
DisplaySpecialsWithinSeasons = true;
EnableExternalContentInSuggestions = true;
ImageSavingConvention = ImageSavingConvention.Compatible;
PublicPort = 8096;