mirror of
https://github.com/Readarr/Readarr.git
synced 2026-09-21 02:36:21 -04:00
Fixed: Use both album artist and track artist fields to pick up author for audiobooks
This commit is contained in:
1 parent
cdf8b0bc8f
commit
dc2de62b03
1 file changed
+2
-1
@@ -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);
|
||||
}
|
||||
|
||||
Reference in new issue
Block a user