Skip to content

Commit 78d4808

Browse files
authored
bind configure function so this is not undefined (microsoft#162245)
1 parent a4071cf commit 78d4808

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/vs/workbench/contrib/tasks/browser/abstractTaskService.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2953,7 +2953,6 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
29532953
// eat the error, it has already been surfaced to the user and we don't care about it here
29542954
});
29552955
}
2956-
29572956
const chooseAndRunTask = (tasks: Task[]) => {
29582957
this._showIgnoredFoldersMessage().then(() => {
29592958
this._showQuickPick(tasks,
@@ -2968,7 +2967,7 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
29682967
return;
29692968
}
29702969
if (task === null) {
2971-
configure();
2970+
configure.apply(this);
29722971
return;
29732972
}
29742973
runSingleTask(task, { attachProblemMatcher: true }, this);

0 commit comments

Comments
 (0)