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
This commit is contained in:
System233 2025-04-22 22:10:34 +08:00 committed by GitHub
parent f1c79759a0
commit 8ac911244c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1613,6 +1613,8 @@ export class Cline extends EventEmitter<ClineEvents> {
],
)
await this.say("user_feedback", text, images)
// Track consecutive mistake errors in telemetry
telemetryService.captureConsecutiveMistakeError(this.taskId)
}