From 8ac911244c6b0446fc14059b1444ecaa78d44136 Mon Sep 17 00:00:00 2001 From: System233 Date: Tue, 22 Apr 2025 22:10:34 +0800 Subject: [PATCH] Fix user feedback not being added to conversation history in API error state (#2844) Fix user feedback not being added to conversation history in the API error state --- src/core/Cline.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/Cline.ts b/src/core/Cline.ts index 9a936f9698..c78674c73f 100644 --- a/src/core/Cline.ts +++ b/src/core/Cline.ts @@ -1613,6 +1613,8 @@ export class Cline extends EventEmitter { ], ) + await this.say("user_feedback", text, images) + // Track consecutive mistake errors in telemetry telemetryService.captureConsecutiveMistakeError(this.taskId) }