From 432f277329330284a98c2f1c0668ce304f7bd068 Mon Sep 17 00:00:00 2001 From: arabcoders Date: Thu, 31 Jul 2025 23:49:52 +0300 Subject: [PATCH] respect auto_start when re-queuing item --- ui/app/components/History.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/app/components/History.vue b/ui/app/components/History.vue index aa833526..9489f9c3 100644 --- a/ui/app/components/History.vue +++ b/ui/app/components/History.vue @@ -775,7 +775,7 @@ const removeItem = (item: StoreItem) => { } const retryItem = (item: StoreItem, re_add = false) => { - const item_req: Partial = { + let item_req: Partial = { url: item.url, preset: item.preset, folder: item.folder, @@ -783,7 +783,9 @@ const retryItem = (item: StoreItem, re_add = false) => { template: item.template, cli: item?.cli, extras: toRaw(item?.extras || {}) ?? {}, + auto_start: item.auto_start, } + socket.emit('item_delete', { id: item._id, remove_file: false }) if (true === re_add) { toast.info('Cleared the item from history, and added it to the new download form.')