mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Fix /trigger and /continue auto-execution
This commit is contained in:
@ -272,7 +272,7 @@ async function performQuickReply(prompt, index) {
|
||||
// the prompt starts with '/' - execute slash commands natively
|
||||
if (prompt.startsWith('/')) {
|
||||
const result = await executeSlashCommands(newText);
|
||||
return result?.pipe;
|
||||
return typeof result === 'object' ? result?.pipe : '';
|
||||
}
|
||||
|
||||
newText = substituteParams(newText);
|
||||
|
Reference in New Issue
Block a user