Skip to content

Commit aba2a99

Browse files
authored
fix(core): Default skipNextSpeakerCheck to true when the setting is not manually set (google-gemini#8295)
1 parent 181898c commit aba2a99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/config/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ export class Config {
392392
this.trustedFolder = params.trustedFolder;
393393
this.useRipgrep = params.useRipgrep ?? false;
394394
this.shouldUseNodePtyShell = params.shouldUseNodePtyShell ?? false;
395-
this.skipNextSpeakerCheck = params.skipNextSpeakerCheck ?? false;
395+
this.skipNextSpeakerCheck = params.skipNextSpeakerCheck ?? true;
396396
this.shellExecutionConfig = {
397397
terminalWidth: params.shellExecutionConfig?.terminalWidth ?? 80,
398398
terminalHeight: params.shellExecutionConfig?.terminalHeight ?? 24,

0 commit comments

Comments
 (0)