We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb650ed commit 05e6a98Copy full SHA for 05e6a98
src/extension/api.ts
@@ -280,8 +280,8 @@ export class API extends EventEmitter<RooCodeEvents> implements RooCodeAPI {
280
;(this.emit as any)(RooCodeEventName.TaskDelegationCompleted, task.taskId, childTaskId, summary)
281
})
282
283
- task.on(RooCodeEventName.TaskDelegationResumed as any, () => {
284
- ;(this.emit as any)(RooCodeEventName.TaskDelegationResumed, task.taskId, task.childTaskId || "")
+ task.on(RooCodeEventName.TaskDelegationResumed as any, (childTaskId: string) => {
+ ;(this.emit as any)(RooCodeEventName.TaskDelegationResumed, task.taskId, childTaskId)
285
286
287
// Task Execution
0 commit comments