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 115efcc commit d9a1ef6Copy full SHA for d9a1ef6
src/core/Cline.ts
@@ -1031,7 +1031,9 @@ export class Cline extends EventEmitter<ClineEvents> {
1031
// either truncate or summarize the conversation history based on settings.
1032
if (previousApiReqIndex >= 0) {
1033
const previousRequest = this.clineMessages[previousApiReqIndex]?.text
1034
- if (!previousRequest) return // Should not happen, but guard anyway
+ if (!previousRequest) {
1035
+ return // Should not happen, but guard anyway
1036
+ }
1037
1038
const {
1039
// These tokens are from the *previous* request's response, not the current history size
0 commit comments