From 5489dd61a758e991196eedc8e1fb34293f328afc Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Tue, 1 Oct 2024 14:14:19 +0300 Subject: [PATCH] Pass /continue error to slash command executor --- public/scripts/slash-commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/slash-commands.js b/public/scripts/slash-commands.js index 22531eb15..0a30f24da 100644 --- a/public/scripts/slash-commands.js +++ b/public/scripts/slash-commands.js @@ -3027,7 +3027,7 @@ async function continueChatCallback(args, prompt) { resolve(); } catch (error) { console.error('Error running /continue command:', error); - reject(); + reject(error); } });