mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-18 22:54:34 +00:00
Fixed: Use both album artist and track artist fields to pick up author for audiobooks
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user