Skip to content

Commit

Permalink
Fix where user tasks show in the tasks quick pick
Browse files Browse the repository at this point in the history
  • Loading branch information
alexr00 committed Oct 24, 2019
1 parent a143fc3 commit 525f1e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1998,7 +1998,7 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
for (let task of tasks) {
let key = task.getRecentlyUsedKey();
if (!key || !recentlyUsedTasks.has(key)) {
if (task._source.kind === TaskSourceKind.Workspace) {
if ((task._source.kind === TaskSourceKind.Workspace) || (task._source.kind === TaskSourceKind.User)) {
configured.push(task);
} else {
detected.push(task);
Expand Down

0 comments on commit 525f1e4

Please sign in to comment.