fix: fallback to artist if album artist not provided

This commit is contained in:
Cody Robibero 2024-04-14 14:29:55 -06:00
parent 6fb6b5f176
commit d402005d32

View file

@ -338,6 +338,12 @@ namespace MediaBrowser.Providers.MediaInfo
audio.Artists = performers;
}
if (albumArtists.Length == 0)
{
// Album artists not provided, fall back to performers (artists).
albumArtists = performers;
}
if (options.ReplaceAllMetadata && albumArtists.Length != 0)
{
audio.AlbumArtists = albumArtists;