Fixed: Use both album artist and track artist fields to pick up author for audiobooks

This commit is contained in:
ta264 2021-09-01 21:04:39 +01:00
parent cdf8b0bc8f
commit dc2de62b03

View file

@ -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);
}