diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-20 12:29:50 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-20 12:29:50 -0400 |
| commit | 6a5d6b5d4c7fdaf775f72e219928bf41fbb335dc (patch) | |
| tree | ad5e28746aee29773b96930caa1eba2d0d339d06 /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | 333935f3f6f76c4b85d99800a946bb3d2e890343 (diff) | |
forgot to mark file copy if newer
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index ab7d7cb9d..554e7afd1 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -243,17 +243,17 @@ namespace MediaBrowser.Model.Configuration TmdbFetchedProfileSize = "original"; //w185 w45 h632 or original TmdbFetchedPosterSize = "original"; //w500, w342, w185 or original TmdbFetchedBackdropSize = "original"; //w1280, w780 or original - DownloadMovieImages = new ImageDownloadOptions {Backdrops = true, Primary = true}; - DownloadSeriesImages = new ImageDownloadOptions {Backdrops = true, Primary = true, Banner = true, Logo = true}; - DownloadSeasonImages = new ImageDownloadOptions {Backdrops = false, Primary = true, Banner = true}; - DownloadMusicArtistImages = new ImageDownloadOptions {Backdrops = true, Primary = true, Banner = true, Thumb = true}; - DownloadMusicAlbumImages = new ImageDownloadOptions {Backdrops = true, Primary = false}; + DownloadMovieImages = new ImageDownloadOptions(); + DownloadSeriesImages = new ImageDownloadOptions(); + DownloadSeasonImages = new ImageDownloadOptions(); + DownloadMusicArtistImages = new ImageDownloadOptions(); + DownloadMusicAlbumImages = new ImageDownloadOptions(); DownloadHDFanArt = true; MaxBackdrops = 4; - SortReplaceCharacters = new [] { ".", "+", "%" }; - SortRemoveCharacters = new [] { ",", "&", "-", "{", "}", "'" }; - SortRemoveWords = new [] { "the", "a", "an" }; + SortReplaceCharacters = new[] { ".", "+", "%" }; + SortRemoveCharacters = new[] { ",", "&", "-", "{", "}", "'" }; + SortRemoveWords = new[] { "the", "a", "an" }; } } } |
