From c1af253300b7cfa20bc4f0f9b5ca05499890d542 Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Mon, 18 Oct 2021 13:44:40 -0400 Subject: [PATCH] fix partial rollback --- AaxDecrypter/UnencryptedAudiobookDownloader.cs | 4 ++-- AppScaffolding/AppScaffolding.csproj | 2 +- FileManager/FileTemplate.cs | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/AaxDecrypter/UnencryptedAudiobookDownloader.cs b/AaxDecrypter/UnencryptedAudiobookDownloader.cs index 55c7626c..3c9379b0 100644 --- a/AaxDecrypter/UnencryptedAudiobookDownloader.cs +++ b/AaxDecrypter/UnencryptedAudiobookDownloader.cs @@ -19,8 +19,8 @@ namespace AaxDecrypter ["Step 1: Get Mp3 Metadata"] = Step1_GetMetadata, ["Step 2: Download Audiobook"] = Step2_DownloadAudiobookAsSingleFile, - ["Step 3: Create Cue"] = Step_CreateCue, - ["Step 4: Cleanup"] = Step_Cleanup, + ["Step 3: Create Cue"] = Step3_CreateCue, + ["Step 4: Cleanup"] = Step4_Cleanup, }; } diff --git a/AppScaffolding/AppScaffolding.csproj b/AppScaffolding/AppScaffolding.csproj index f7fbc3f1..edb031c3 100644 --- a/AppScaffolding/AppScaffolding.csproj +++ b/AppScaffolding/AppScaffolding.csproj @@ -3,7 +3,7 @@ net5.0 - 6.2.6.41 + 6.2.6.42 diff --git a/FileManager/FileTemplate.cs b/FileManager/FileTemplate.cs index 5dff519e..940ddf3d 100644 --- a/FileManager/FileTemplate.cs +++ b/FileManager/FileTemplate.cs @@ -48,5 +48,4 @@ namespace FileManager ? value?.Truncate(ParameterMaxSize.Value) : value; } - }