Enable TMDB and OMDB by default

This commit is contained in:
MrTimscampi 2020-12-28 09:19:08 +01:00
parent 8eeed82523
commit 48d8536d2f

View File

@ -49,8 +49,6 @@ namespace MediaBrowser.Model.Configuration
new MetadataOptions new MetadataOptions
{ {
ItemType = "Series", ItemType = "Series",
DisabledMetadataFetchers = new[] { "TheMovieDb" },
DisabledImageFetchers = new[] { "TheMovieDb" }
}, },
new MetadataOptions new MetadataOptions
{ {
@ -69,13 +67,10 @@ namespace MediaBrowser.Model.Configuration
new MetadataOptions new MetadataOptions
{ {
ItemType = "Season", ItemType = "Season",
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" }
} }
}; };
} }