diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-12-26 12:48:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-26 12:48:24 -0500 |
| commit | 6a89ec6556b47f46b6a87240a82bc872fed5a972 (patch) | |
| tree | 3485585ebd551109e7dbfb61a587f7cf6c0b72e3 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | a8381586237a3294476c55b3af63cb7c162adfea (diff) | |
| parent | 325066f7edb52481e93be3b3d90db45645d6924b (diff) | |
Merge pull request #2366 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 493fe1bd2..22713b94f 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -462,11 +462,9 @@ namespace MediaBrowser.Model.Configuration Type = ImageType.Art }, - // Don't download this by default - // Generally not used new ImageOption { - Limit = 0, + Limit = 1, Type = ImageType.Logo } }, @@ -556,7 +554,7 @@ namespace MediaBrowser.Model.Configuration Type = ImageType.Thumb } }, - DisabledMetadataFetchers = new []{ "The Open Movie Database", "TheMovieDb" } + DisabledMetadataFetchers = new []{ "TheMovieDb" } }, new MetadataOptions(0, 1280) @@ -577,8 +575,8 @@ namespace MediaBrowser.Model.Configuration Type = ImageType.Primary } }, - DisabledMetadataFetchers = new []{ "The Open Movie Database" }, - DisabledImageFetchers = new []{ "TheMovieDb" } + DisabledMetadataFetchers = new []{ "The Open Movie Database", "TheMovieDb" }, + DisabledImageFetchers = new []{ "The Open Movie Database", "TheMovieDb" } } }; } |
