diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-10-05 14:12:16 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-10-05 14:12:16 -0400 |
| commit | 8eeca98fef6dd314764882b0ea1121361ec11e46 (patch) | |
| tree | b6e5d8074e9d4326729f13ec5562277cf2845ea4 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | 185fa7f5e76a9971e34c35783698d37902ed14cb (diff) | |
| parent | db01b79901e503350f8359cab8b1eeae5ea30735 (diff) | |
Merge pull request #2943 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index f7fffbf79..65b054b0c 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -183,6 +183,7 @@ namespace MediaBrowser.Model.Configuration public bool EnableExternalContentInSuggestions { get; set; } public bool RequireHttps { get; set; } public bool IsBehindProxy { get; set; } + public bool EnableNewOmdbSupport { get; set; } public int ImageExtractionTimeoutMs { get; set; } @@ -343,8 +344,8 @@ namespace MediaBrowser.Model.Configuration Type = ImageType.Logo } }, - - DisabledImageFetchers = new [] {"FanArt"} + DisabledMetadataFetchers = new []{ "The Open Movie Database" }, + DisabledImageFetchers = new []{ "The Open Movie Database", "FanArt" } }, new MetadataOptions(1, 1280) @@ -389,7 +390,9 @@ namespace MediaBrowser.Model.Configuration Limit = 1, Type = ImageType.Logo } - } + }, + DisabledMetadataFetchers = new []{ "TheMovieDb" }, + DisabledImageFetchers = new []{ "TheMovieDb" } }, new MetadataOptions(1, 1280) |
