Don't replace library properties in queued item with null/empty

This commit is contained in:
Michael Bucari-Tovo 2025-05-02 13:07:53 -06:00
parent 5f4551822b
commit ce952417fb
3 changed files with 8 additions and 7 deletions

View file

@ -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;