mirror of
https://github.com/Readarr/Readarr
synced 2026-01-01 13:13:23 +01:00
Fixed: Use both album artist and track artist fields to pick up author for audiobooks
This commit is contained in:
parent
cdf8b0bc8f
commit
dc2de62b03
1 changed files with 2 additions and 1 deletions
|
|
@ -76,7 +76,8 @@ public void Read(string path)
|
|||
{
|
||||
authors.AddRange(tag.AlbumArtistsSort);
|
||||
}
|
||||
else if (tag.Performers?.Any() ?? false)
|
||||
|
||||
if (tag.Performers?.Any() ?? false)
|
||||
{
|
||||
authors.AddRange(tag.Performers);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue