Fixed: Use track title tag if album tag not set

This commit is contained in:
ta264 2021-09-02 21:12:14 +01:00
parent bdcee8c7c1
commit ffc97d8489

View file

@ -536,7 +536,7 @@ public static implicit operator ParsedTrackInfo(AudioTag tag)
return new ParsedTrackInfo
{
BookTitle = tag.Book,
BookTitle = tag.Book.IsNotNullOrWhiteSpace() ? tag.Book : tag.Title,
Authors = authors,
DiscNumber = (int)tag.Disc,
DiscCount = (int)tag.DiscCount,