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

This commit is contained in:
ta264 committed 2021-09-01 21:04:39 +01:00
1 parent cdf8b0bc8f
commit dc2de62b03
1 file changed
+2 -1
+2 -1
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);
}