File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -107,8 +107,8 @@ export type TaskEvents = {
107107 [ RooCodeEventName . TaskIdle ] : [ taskId : string ]
108108
109109 // Subtask Lifecycle
110- [ RooCodeEventName . TaskPaused ] : [ taskId : string ]
111- [ RooCodeEventName . TaskUnpaused ] : [ taskId : string ]
110+ [ RooCodeEventName . TaskPaused ] : [ ]
111+ [ RooCodeEventName . TaskUnpaused ] : [ ]
112112 [ RooCodeEventName . TaskSpawned ] : [ taskId : string ]
113113
114114 // Task Execution
Original file line number Diff line number Diff line change @@ -1076,7 +1076,7 @@ export class Task extends EventEmitter<TaskEvents> implements TaskLike {
10761076
10771077 public async resumePausedTask ( lastMessage : string ) {
10781078 this . isPaused = false
1079- this . emit ( RooCodeEventName . TaskUnpaused , this . taskId )
1079+ this . emit ( RooCodeEventName . TaskUnpaused )
10801080
10811081 // Fake an answer from the subtask that it has completed running and
10821082 // this is the result of what it has done add the message to the chat
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ export async function newTaskTool(
103103 // Set the isPaused flag to true so the parent
104104 // task can wait for the sub-task to finish.
105105 cline . isPaused = true
106- cline . emit ( RooCodeEventName . TaskPaused , cline . taskId )
106+ cline . emit ( RooCodeEventName . TaskPaused )
107107
108108 return
109109 }
You can’t perform that action at this time.
0 commit comments