From aba2a9932ceea471f158fb5ebb52d3cd5ea98877 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 acd278256d..202e6897e5 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -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,