Skip to content

Commit

Permalink
fix(regression): start LS if board+port selection is ready
Browse files Browse the repository at this point in the history
  • Loading branch information
Akos Kitta committed Aug 10, 2023
1 parent 3d13ed2 commit 58b16b4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ export class InoLanguage extends SketchContribution {
}
}),
]);
start(this.boardsServiceProvider.boardsConfig.selectedBoard);
this.boardsServiceProvider.ready.then(() =>
start(this.boardsServiceProvider.boardsConfig.selectedBoard)
);
}

onStop(): void {
Expand Down

0 comments on commit 58b16b4

Please sign in to comment.