diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-30 16:23:54 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-30 16:23:54 -0500 |
| commit | d0d54a503d6a7bd7743ee7cfb808fa9528343fea (patch) | |
| tree | 78ed3dcb3b2b268bd5fea5475d940479a8a4e323 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | d7aeb685486df45e69753d93d6da0c3d6c7ecd18 (diff) | |
switch boxsets to new providers
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index eef6f0f2f..424c9c48e 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -189,6 +189,7 @@ namespace MediaBrowser.Model.Configuration /// <value><c>true</c> if [enable tv db updates]; otherwise, <c>false</c>.</value> public bool EnableTvDbUpdates { get; set; } public bool EnableTmdbUpdates { get; set; } + public bool EnableFanArtUpdates { get; set; } public bool EnableVideoImageExtraction { get; set; } @@ -243,8 +244,9 @@ namespace MediaBrowser.Model.Configuration LegacyWebSocketPortNumber = 8945; EnableHttpLevelLogging = true; EnableDashboardResponseCaching = true; - EnableVideoImageExtraction = true; + EnableFanArtUpdates = true; + EnableVideoImageExtraction = true; EnableMovieChapterImageExtraction = true; EnableEpisodeChapterImageExtraction = false; EnableOtherVideoChapterImageExtraction = false; |
