Fixed: Use track title tag if album tag not set

pull/1237/head
ta264 4 years ago
parent bdcee8c7c1
commit ffc97d8489

@ -536,7 +536,7 @@ namespace NzbDrone.Core.MediaFiles
return new ParsedTrackInfo
{
BookTitle = tag.Book,
BookTitle = tag.Book.IsNotNullOrWhiteSpace() ? tag.Book : tag.Title,
Authors = authors,
DiscNumber = (int)tag.Disc,
DiscCount = (int)tag.DiscCount,

Loading…
Cancel
Save