Fixed: Use both album artist and track artist fields to pick up author for audiobooks

pull/1205/head
ta264 3 years ago
parent cdf8b0bc8f
commit dc2de62b03

@ -76,7 +76,8 @@ namespace NzbDrone.Core.MediaFiles
{
authors.AddRange(tag.AlbumArtistsSort);
}
else if (tag.Performers?.Any() ?? false)
if (tag.Performers?.Any() ?? false)
{
authors.AddRange(tag.Performers);
}

Loading…
Cancel
Save