mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: allow text content to be displayed after tool use
- Remove didAlreadyUseTool check from text content processing - Fixes issue where content after update_todo_list tool was being cut off - Only tool uses should be blocked after first tool, not text content - Resolves #5847
This commit is contained in:
parent
a7771a3c11
commit
2f007b9eae
1 changed files with 1 additions and 1 deletions
|
|
@ -82,7 +82,7 @@ export async function presentAssistantMessage(cline: Task) {
|
|||
|
||||
switch (block.type) {
|
||||
case "text": {
|
||||
if (cline.didRejectTool || cline.didAlreadyUseTool) {
|
||||
if (cline.didRejectTool) {
|
||||
break
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue