Skip to content

Commit 4bb81e3

Browse files
committed
Fixes microsoft#27348: Task should not be drop if identifier is undefined
1 parent 6fb0af2 commit 4bb81e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/api/node/extHostTask.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ namespace Tasks {
294294
}
295295

296296
function fromSingle(task: vscode.Task, extension: IExtensionDescription, uuidMap: UUIDMap): TaskSystem.Task {
297-
if (typeof task.name !== 'string' || typeof task.identifier !== 'string') {
297+
if (typeof task.name !== 'string') {
298298
return undefined;
299299
}
300300
let command: TaskSystem.CommandConfiguration;

0 commit comments

Comments
 (0)