fix(core): Default skipNextSpeakerCheck to true when the setting is not manually set (#8295)

This commit is contained in:
Sandy Tao
2025-09-11 14:11:06 -07:00
committed by GitHub
parent 181898cb5d
commit aba2a9932c

View File

@@ -392,7 +392,7 @@ export class Config {
this.trustedFolder = params.trustedFolder;
this.useRipgrep = params.useRipgrep ?? false;
this.shouldUseNodePtyShell = params.shouldUseNodePtyShell ?? false;
this.skipNextSpeakerCheck = params.skipNextSpeakerCheck ?? false;
this.skipNextSpeakerCheck = params.skipNextSpeakerCheck ?? true;
this.shellExecutionConfig = {
terminalWidth: params.shellExecutionConfig?.terminalWidth ?? 80,
terminalHeight: params.shellExecutionConfig?.terminalHeight ?? 24,