Skip to content

Commit e35d69d

Browse files
committed
Fix bug where continuing task with context mention wouldnt pull file contents
1 parent 52582c4 commit e35d69d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/core/Cline.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3019,7 +3019,8 @@ export class Cline {
30193019
if (
30203020
block.text.includes("<feedback>") ||
30213021
block.text.includes("<answer>") ||
3022-
block.text.includes("<task>")
3022+
block.text.includes("<task>") ||
3023+
block.text.includes("<user_message>")
30233024
) {
30243025
return {
30253026
...block,

0 commit comments

Comments
 (0)