mirror of
https://github.com/Readarr/Readarr
synced 2025-12-27 10:43:01 +01:00
Fixed: Use track title tag if album tag not set
This commit is contained in:
parent
bdcee8c7c1
commit
ffc97d8489
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue