From 70ff7a36b99c7ef532804f975bfe0bf3f5e9d61c Mon Sep 17 00:00:00 2001 From: Sandy Tao Date: Thu, 11 Sep 2025 14:11:06 -0700 Subject: [PATCH] fix(core): Default skipNextSpeakerCheck to true when the setting is not manually set (#8295) --- packages/core/src/config/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index 5136dbf39d..3f4bd5a60d 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -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);