mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Add missing awaits on refactored tools (#2078)
This commit is contained in:
parent
cbe7075f4f
commit
bedb7de72b
1 changed files with 2 additions and 2 deletions
|
|
@ -2255,12 +2255,12 @@ export class Cline extends EventEmitter<ClineEvents> {
|
|||
}
|
||||
|
||||
case "read_file": {
|
||||
readFileTool(this, block, askApproval, handleError, pushToolResult, removeClosingTag)
|
||||
await readFileTool(this, block, askApproval, handleError, pushToolResult, removeClosingTag)
|
||||
break
|
||||
}
|
||||
|
||||
case "fetch_instructions": {
|
||||
fetchInstructionsTool(this, block, askApproval, handleError, pushToolResult)
|
||||
await fetchInstructionsTool(this, block, askApproval, handleError, pushToolResult)
|
||||
break
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue