mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-15 10:43:30 +01:00
Remove local metadata stop logic
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user