From f017fe419f39f35ebb89974e63ccba9225866ebd Mon Sep 17 00:00:00 2001 From: MBucari Date: Sun, 27 Jul 2025 11:38:01 -0600 Subject: [PATCH] Fix ID3 tag encoding error (#1315) --- Source/AaxDecrypter/AaxDecrypter.csproj | 2 +- Source/AaxDecrypter/AaxcDownloadConvertBase.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/AaxDecrypter/AaxDecrypter.csproj b/Source/AaxDecrypter/AaxDecrypter.csproj index 4ad8889d..9a62b4c6 100644 --- a/Source/AaxDecrypter/AaxDecrypter.csproj +++ b/Source/AaxDecrypter/AaxDecrypter.csproj @@ -13,7 +13,7 @@ - + diff --git a/Source/AaxDecrypter/AaxcDownloadConvertBase.cs b/Source/AaxDecrypter/AaxcDownloadConvertBase.cs index f4ae4134..2e00afc4 100644 --- a/Source/AaxDecrypter/AaxcDownloadConvertBase.cs +++ b/Source/AaxDecrypter/AaxcDownloadConvertBase.cs @@ -130,11 +130,11 @@ namespace AaxDecrypter AaxFile.AppleTags.AppleListBox.EditOrAddFreeformTag(tagDomain, "PART", part.ToString()); } - OnInitialized(); OnRetrievedTitle(AaxFile.AppleTags.TitleSansUnabridged); OnRetrievedAuthors(AaxFile.AppleTags.FirstAuthor); OnRetrievedNarrators(AaxFile.AppleTags.Narrator); OnRetrievedCoverArt(AaxFile.AppleTags.Cover); + OnInitialized(); return !IsCanceled; }