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
parent 5fc6dce719
commit ffe7f5f6d8

View File

@@ -379,7 +379,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.truncateToolOutputThreshold =
params.truncateToolOutputThreshold ??
DEFAULT_TRUNCATE_TOOL_OUTPUT_THRESHOLD;