From a2d7b689f3da4eb3a1bc49bc698284534bd608a5 Mon Sep 17 00:00:00 2001 From: NimBold Date: Fri, 19 Jun 2026 16:18:51 +0330 Subject: [PATCH] fix(download): redownload creates fresh queued task --- src/components/DownloadTable.tsx | 10 +- src/store/useDownloadStore.ts | 154 +++++++++++++++++++------------ 2 files changed, 101 insertions(+), 63 deletions(-) diff --git a/src/components/DownloadTable.tsx b/src/components/DownloadTable.tsx index f1313a5..8eb582c 100644 --- a/src/components/DownloadTable.tsx +++ b/src/components/DownloadTable.tsx @@ -372,11 +372,15 @@ export const DownloadTable: React.FC = ({ filter }) => { )} - {['completed', 'failed', 'paused', 'retrying'].includes(contextItem.status) && ( + {['completed', 'failed', 'paused'].includes(contextItem.status) && (