mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-05 15:37:14 +00:00
Fixed: Use track title tag if album tag not set
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user