From 458ea6a37709d88fe75957b1e46095f3b358443f Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Sun, 8 May 2022 16:13:35 -0600 Subject: [PATCH] Fix tmp file extension to aaxc --- AaxDecrypter/AudiobookDownloadBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AaxDecrypter/AudiobookDownloadBase.cs b/AaxDecrypter/AudiobookDownloadBase.cs index e9bb0a0e..c825bf4e 100644 --- a/AaxDecrypter/AudiobookDownloadBase.cs +++ b/AaxDecrypter/AudiobookDownloadBase.cs @@ -47,7 +47,7 @@ namespace AaxDecrypter throw new DirectoryNotFoundException($"Directory does not exist: {nameof(cacheDirectory)}"); jsonDownloadState = Path.Combine(cacheDirectory, Path.GetFileName(Path.ChangeExtension(OutputFileName, ".json"))); - TempFilePath = Path.ChangeExtension(jsonDownloadState, ".tmp"); + TempFilePath = Path.ChangeExtension(jsonDownloadState, ".aaxc"); DownloadOptions = ArgumentValidator.EnsureNotNull(dlLic, nameof(dlLic));