mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04: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);
|
authors.AddRange(tag.AlbumArtistsSort);
|
||||||
}
|
}
|
||||||
else if (tag.Performers?.Any() ?? false)
|
|
||||||
|
if (tag.Performers?.Any() ?? false)
|
||||||
{
|
{
|
||||||
authors.AddRange(tag.Performers);
|
authors.AddRange(tag.Performers);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user