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 0b7abe97ce
commit 70ff7a36b9

View File

@@ -358,7 +358,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.useSmartEdit = params.useSmartEdit ?? false;
this.extensionManagement = params.extensionManagement ?? true;
this.storage = new Storage(this.targetDir);