Don't replace library properties in queued item with null/empty
This commit is contained in:
parent
5f4551822b
commit
ce952417fb
3 changed files with 8 additions and 7 deletions
|
|
@ -103,8 +103,8 @@ namespace AaxDecrypter
|
|||
|
||||
OnInitialized();
|
||||
OnRetrievedTitle(AaxFile.AppleTags.TitleSansUnabridged);
|
||||
OnRetrievedAuthors(AaxFile.AppleTags.FirstAuthor ?? "[unknown]");
|
||||
OnRetrievedNarrators(AaxFile.AppleTags.Narrator ?? "[unknown]");
|
||||
OnRetrievedAuthors(AaxFile.AppleTags.FirstAuthor);
|
||||
OnRetrievedNarrators(AaxFile.AppleTags.Narrator);
|
||||
OnRetrievedCoverArt(AaxFile.AppleTags.Cover);
|
||||
|
||||
return !IsCanceled;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue