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 6e45786 commit 79c4092Copy full SHA for 79c4092
src/vs/workbench/contrib/welcomeGettingStarted/browser/startupPage.ts
@@ -55,8 +55,6 @@ export class StartupPageContribution implements IWorkbenchContribution {
55
@INotificationService private readonly notificationService: INotificationService,
56
@IEditorResolverService editorResolverService: IEditorResolverService
57
) {
58
- this.run().then(undefined, onUnexpectedError);
59
-
60
editorResolverService.registerEditor(
61
`${GettingStartedInput.RESOURCE.scheme}:/**`,
62
{
@@ -80,6 +78,8 @@ export class StartupPageContribution implements IWorkbenchContribution {
80
78
}
81
79
82
);
+
+ this.run().then(undefined, onUnexpectedError);
83
84
85
private async run() {
0 commit comments