From 4bfb4e73ce40d043dbc5ac2695062ca25402a457 Mon Sep 17 00:00:00 2001 From: Mbucari <37587114+Mbucari@users.noreply.github.com> Date: Tue, 6 May 2025 12:45:43 -0600 Subject: [PATCH] Fix aax file getting inadvertently deleted (#1236) --- Source/AaxDecrypter/AudiobookDownloadBase.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/AaxDecrypter/AudiobookDownloadBase.cs b/Source/AaxDecrypter/AudiobookDownloadBase.cs index bf08255d..23d12e4c 100644 --- a/Source/AaxDecrypter/AudiobookDownloadBase.cs +++ b/Source/AaxDecrypter/AudiobookDownloadBase.cs @@ -204,8 +204,6 @@ namespace AaxDecrypter else throw new InvalidOperationException($"Unknown file type: {fileType}"); - FileUtility.SaferMove(tempFilePath, aaxPath); - OnFileCreated(aaxPath); OnFileCreated(keyPath); }