Skip to content

Commit 5de60c1

Browse files
author
Benjamin Pasero
committed
web - fix broken static extensions
1 parent 6ba021b commit 5de60c1

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/vs/code/browser/workbench/workbench.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,4 +209,10 @@ if (options.workspaceUri) {
209209
options.workspaceUri = URI.revive(options.workspaceUri);
210210
}
211211

212+
if (Array.isArray(options.staticExtensions)) {
213+
options.staticExtensions.forEach(extension => {
214+
extension.extensionLocation = URI.revive(extension.extensionLocation);
215+
});
216+
}
217+
212218
create(document.body, options);

0 commit comments

Comments
 (0)