Revert "Fixed PDF download form disposed error"

This reverts commit 7fbe8ae769277480fb8119a5687434f2b3aec849.
This commit is contained in:
Michael Bucari-Tovo 2021-08-21 08:14:10 -06:00
parent 7fbe8ae769
commit 2a22cff67c

View File

@ -98,11 +98,11 @@ namespace LibationWinForms.BookLiberation
private static IProcessable CreateBackupBook(EventHandler<LibraryBook> completedAction, LogMe logMe)
{
var downloadPdf = CreateProcessable<DownloadPdf, PdfDownloadForm>(logMe);
//Chain pdf download on DownloadDecryptBook.Completed
async void onDownloadDecryptBookCompleted(object sender, LibraryBook e)
{
var downloadPdf = CreateProcessable<DownloadPdf, PdfDownloadForm>(logMe);
await downloadPdf.TryProcessAsync(e);
completedAction(sender, e);
}