Pass /continue error to slash command executor

This commit is contained in:
Cohee
2024-10-01 14:14:19 +03:00
parent b4529e75c6
commit 5489dd61a7

View File

@ -3027,7 +3027,7 @@ async function continueChatCallback(args, prompt) {
resolve(); resolve();
} catch (error) { } catch (error) {
console.error('Error running /continue command:', error); console.error('Error running /continue command:', error);
reject(); reject(error);
} }
}); });