From ef2adfd474a9c22fa8b85e8056422e8f01fd06f6 Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Tue, 29 Jun 2021 13:08:21 -0400 Subject: [PATCH] If a failure occurs before aaxcProcesser is init'd, this will give a null ref exception which can obscure the actual exception that we want to be visible --- AaxDecrypter/AaxcDownloadConverter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AaxDecrypter/AaxcDownloadConverter.cs b/AaxDecrypter/AaxcDownloadConverter.cs index cb37d542..663728fd 100644 --- a/AaxDecrypter/AaxcDownloadConverter.cs +++ b/AaxDecrypter/AaxcDownloadConverter.cs @@ -273,7 +273,7 @@ namespace AaxDecrypter public void Cancel() { - aaxcProcesser.Cancel(); + aaxcProcesser?.Cancel(); } } }