We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 001dca6 commit 413577bCopy full SHA for 413577b
src/core/webview/ClineProvider.ts
@@ -1559,7 +1559,7 @@ export class ClineProvider
1559
mcpEnabled: stateValues.mcpEnabled ?? true,
1560
enableMcpServerCreation: stateValues.enableMcpServerCreation ?? true,
1561
alwaysApproveResubmit: stateValues.alwaysApproveResubmit ?? false,
1562
- requestDelaySeconds: stateValues.requestDelaySeconds ?? 10,
+ requestDelaySeconds: Math.max(5, stateValues.requestDelaySeconds ?? 10),
1563
currentApiConfigName: stateValues.currentApiConfigName ?? "default",
1564
listApiConfigMeta: stateValues.listApiConfigMeta ?? [],
1565
pinnedApiConfigs: stateValues.pinnedApiConfigs ?? {},
0 commit comments