From 2cce6af436b444cfd183f96f3476d463caa18798 Mon Sep 17 00:00:00 2001 From: PearsonFlyer Date: Thu, 13 Jul 2023 15:25:45 -0400 Subject: [PATCH] Added the ability to skip redownload when marking an item as failed in the activity queue --- frontend/src/Activity/Queue/QueueRow.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/Activity/Queue/QueueRow.js b/frontend/src/Activity/Queue/QueueRow.js index 4e259efed..954e7ee79 100644 --- a/frontend/src/Activity/Queue/QueueRow.js +++ b/frontend/src/Activity/Queue/QueueRow.js @@ -51,8 +51,7 @@ class QueueRow extends Component { } = this.props; onQueueRowModalOpenOrClose(false); - onRemoveQueueItemPress(blocklist); - onRemoveQueueItemPress(skipredownload); + onRemoveQueueItemPress(blocklist, skipredownload); this.setState({ isRemoveQueueItemModalOpen: false }); };