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 9003f08 commit 170ea5dCopy full SHA for 170ea5d
src/core/webview/ClineProvider.ts
@@ -403,6 +403,13 @@ export class ClineProvider
403
await this.removeClineFromStack()
404
}
405
406
+ resumeTask(taskId: string): void {
407
+ // Use the existing showTaskWithId method which handles both current and historical tasks
408
+ this.showTaskWithId(taskId).catch((error) => {
409
+ this.log(`Failed to resume task ${taskId}: ${error.message}`)
410
+ })
411
+ }
412
+
413
getRecentTasks(): string[] {
414
if (this.recentTasksCache) {
415
return this.recentTasksCache
0 commit comments