Selaa lähdekoodia

minor changes to server configuration file

dkanada 5 vuotta sitten
vanhempi
sitoutus
d72bb8358e
1 muutettua tiedostoa jossa 12 lisäystä ja 9 poistoa
  1. 12 9
      MediaBrowser.Model/Configuration/ServerConfiguration.cs

+ 12 - 9
MediaBrowser.Model/Configuration/ServerConfiguration.cs

@@ -240,11 +240,13 @@ namespace MediaBrowser.Model.Configuration
         public bool EnableNewOmdbSupport { get; set; }
         public bool EnableNewOmdbSupport { get; set; }
 
 
         public string[] RemoteIPFilter { get; set; }
         public string[] RemoteIPFilter { get; set; }
+
         public bool IsRemoteIPFilterBlacklist { get; set; }
         public bool IsRemoteIPFilterBlacklist { get; set; }
 
 
         public int ImageExtractionTimeoutMs { get; set; }
         public int ImageExtractionTimeoutMs { get; set; }
 
 
         public PathSubstitution[] PathSubstitutions { get; set; }
         public PathSubstitution[] PathSubstitutions { get; set; }
+
         public bool EnableSimpleArtistDetection { get; set; }
         public bool EnableSimpleArtistDetection { get; set; }
 
 
         public string[] UninstalledPlugins { get; set; }
         public string[] UninstalledPlugins { get; set; }
@@ -313,24 +315,24 @@ namespace MediaBrowser.Model.Configuration
                 new MetadataOptions
                 new MetadataOptions
                 {
                 {
                     ItemType = "MusicVideo",
                     ItemType = "MusicVideo",
-                    DisabledMetadataFetchers = new [] { "The Open Movie Database" },
-                    DisabledImageFetchers = new [] { "The Open Movie Database" }
+                    DisabledMetadataFetchers = new[] { "The Open Movie Database" },
+                    DisabledImageFetchers = new[] { "The Open Movie Database" }
                 },
                 },
                 new MetadataOptions
                 new MetadataOptions
                 {
                 {
                     ItemType = "Series",
                     ItemType = "Series",
-                    DisabledMetadataFetchers = new [] { "TheMovieDb" },
-                    DisabledImageFetchers = new [] { "TheMovieDb" }
+                    DisabledMetadataFetchers = new[] { "TheMovieDb" },
+                    DisabledImageFetchers = new[] { "TheMovieDb" }
                 },
                 },
                 new MetadataOptions
                 new MetadataOptions
                 {
                 {
                     ItemType = "MusicAlbum",
                     ItemType = "MusicAlbum",
-                    DisabledMetadataFetchers = new [] { "TheAudioDB" }
+                    DisabledMetadataFetchers = new[] { "TheAudioDB" }
                 },
                 },
                 new MetadataOptions
                 new MetadataOptions
                 {
                 {
                     ItemType = "MusicArtist",
                     ItemType = "MusicArtist",
-                    DisabledMetadataFetchers = new [] { "TheAudioDB" }
+                    DisabledMetadataFetchers = new[] { "TheAudioDB" }
                 },
                 },
                 new MetadataOptions
                 new MetadataOptions
                 {
                 {
@@ -339,13 +341,13 @@ namespace MediaBrowser.Model.Configuration
                 new MetadataOptions
                 new MetadataOptions
                 {
                 {
                     ItemType = "Season",
                     ItemType = "Season",
-                    DisabledMetadataFetchers = new [] { "TheMovieDb" },
+                    DisabledMetadataFetchers = new[] { "TheMovieDb" },
                 },
                 },
                 new MetadataOptions
                 new MetadataOptions
                 {
                 {
                     ItemType = "Episode",
                     ItemType = "Episode",
-                    DisabledMetadataFetchers = new [] { "The Open Movie Database", "TheMovieDb" },
-                    DisabledImageFetchers = new [] { "The Open Movie Database", "TheMovieDb" }
+                    DisabledMetadataFetchers = new[] { "The Open Movie Database", "TheMovieDb" },
+                    DisabledImageFetchers = new[] { "The Open Movie Database", "TheMovieDb" }
                 }
                 }
             };
             };
         }
         }
@@ -354,6 +356,7 @@ namespace MediaBrowser.Model.Configuration
     public class PathSubstitution
     public class PathSubstitution
     {
     {
         public string From { get; set; }
         public string From { get; set; }
+
         public string To { get; set; }
         public string To { get; set; }
     }
     }
 }
 }