Merge pull request #8008 from revam/add-escape-hatch-for-series-merging

pull/8056/head
Bond-009 2 years ago committed by GitHub
commit ecae0982cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -184,6 +184,11 @@ namespace MediaBrowser.Controller.Entities.TV
list.Insert(0, key);
}
if (this.TryGetProviderId(MetadataProvider.Custom, out key))
{
list.Insert(0, key);
}
return list;
}

@ -7,6 +7,12 @@ namespace MediaBrowser.Model.Entities
/// </summary>
public enum MetadataProvider
{
/// <summary>
/// This metadata provider is for users and/or plugins to override the
/// default merging behaviour.
/// </summary>
Custom = 0,
/// <summary>
/// The imdb.
/// </summary>

Loading…
Cancel
Save