minor changes to server configuration file

This commit is contained in:
dkanada 2020-05-31 15:20:17 +09:00
parent 24f7f84828
commit d72bb8358e
1 changed files with 12 additions and 9 deletions

View File

@ -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" }, DisabledMetadataFetchers = new[] { "The Open Movie Database" },
DisabledImageFetchers = new [] { "The Open Movie Database" } DisabledImageFetchers = new[] { "The Open Movie Database" }
}, },
new MetadataOptions new MetadataOptions
{ {
ItemType = "Series", ItemType = "Series",
DisabledMetadataFetchers = new [] { "TheMovieDb" }, DisabledMetadataFetchers = new[] { "TheMovieDb" },
DisabledImageFetchers = 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" }, DisabledMetadataFetchers = new[] { "The Open Movie Database", "TheMovieDb" },
DisabledImageFetchers = 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; }
} }
} }