From 0c26c34bdd4eae3b6e28c29a760ceca2ad586792 Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Wed, 30 Jun 2021 18:11:56 -0600 Subject: [PATCH] Fixed improper condition check. --- FileLiberator/DownloadDecryptBook.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/FileLiberator/DownloadDecryptBook.cs b/FileLiberator/DownloadDecryptBook.cs index 73d77050..66e57d42 100644 --- a/FileLiberator/DownloadDecryptBook.cs +++ b/FileLiberator/DownloadDecryptBook.cs @@ -119,7 +119,8 @@ namespace FileLiberator { RequestCoverArt?.Invoke(this, aaxcDownloader.SetCoverArt); } - else + + if (e is not null) { CoverImageFilepathDiscovered?.Invoke(this, e); }