From 9b5df99a618b512517ea2ac90f3f0a033318ec3f Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Mon, 16 May 2022 12:56:15 -0600 Subject: [PATCH] Use new ProcessQueue --- Source/LibationWinForms/Form1.VisibleBooks.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/LibationWinForms/Form1.VisibleBooks.cs b/Source/LibationWinForms/Form1.VisibleBooks.cs index 848f6c09..c0d763c1 100644 --- a/Source/LibationWinForms/Form1.VisibleBooks.cs +++ b/Source/LibationWinForms/Form1.VisibleBooks.cs @@ -63,8 +63,7 @@ namespace LibationWinForms } private async void liberateVisible(object sender, EventArgs e) - => await BookLiberation.ProcessorAutomationController.BackupAllBooksAsync(productsGrid.GetVisible()); - + => await Task.Run(() => processBookQueue1.AddDownloadDecrypt(productsGrid.GetVisible())); private void replaceTagsToolStripMenuItem_Click(object sender, EventArgs e) { var dialog = new TagsBatchDialog();