Remove local metadata stop logic

This commit is contained in:
Shadowghost
2024-05-22 07:38:53 +02:00
parent f5a8fca22f
commit 9145be6bfc
12 changed files with 1 additions and 146 deletions

View File

@@ -208,27 +208,6 @@ namespace MediaBrowser.Providers.Music
return updateType;
}
/// <inheritdoc />
protected override bool HasBaseMetadata(MusicAlbum item)
{
if (string.IsNullOrWhiteSpace(item.Album))
{
return false;
}
if (item.AlbumArtists.Count == 0 && item.Artists.Count == 0)
{
return false;
}
if (!item.ProductionYear.HasValue)
{
return false;
}
return base.HasBaseMetadata(item);
}
/// <inheritdoc />
protected override void MergeData(
MetadataResult<MusicAlbum> source,