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 3df9bc8 commit 95e0f54Copy full SHA for 95e0f54
src/vs/workbench/contrib/tasks/browser/abstractTaskService.ts
@@ -1120,11 +1120,7 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
1120
key = customized[configuration].getRecentlyUsedKey()!;
1121
}
1122
1123
- // isBackground is still false at this pt bc problem matchers
1124
- // for contributed tasks get attached later
1125
- // they're set to [] for this case,
1126
- // so checking if they're defined is sufficient
1127
- if (!task.configurationProperties.problemMatchers) {
+ if (!task.configurationProperties.isBackground) {
1128
return;
1129
1130
this._getTasksFromStorage('persistent').set(key, JSON.stringify(customizations));
0 commit comments