mirror of
https://github.com/Readarr/Readarr
synced 2026-05-08 21:13:58 +02: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);
|
authors.AddRange(tag.AlbumArtistsSort);
|
||||||
}
|
}
|
||||||
else if (tag.Performers?.Any() ?? false)
|
|
||||||
|
if (tag.Performers?.Any() ?? false)
|
||||||
{
|
{
|
||||||
authors.AddRange(tag.Performers);
|
authors.AddRange(tag.Performers);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue