Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 58b16b4

Browse filesBrowse files
author
Akos Kitta
committed
fix(regression): start LS if board+port selection is ready
1 parent 3d13ed2 commit 58b16b4
Copy full SHA for 58b16b4

File tree

1 file changed

+3
-1
lines changed
Filter options

1 file changed

+3
-1
lines changed

‎arduino-ide-extension/src/browser/contributions/ino-language.ts

Copy file name to clipboardExpand all lines: arduino-ide-extension/src/browser/contributions/ino-language.ts
+3-1Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ export class InoLanguage extends SketchContribution {
111111
}
112112
}),
113113
]);
114-
start(this.boardsServiceProvider.boardsConfig.selectedBoard);
114+
this.boardsServiceProvider.ready.then(() =>
115+
start(this.boardsServiceProvider.boardsConfig.selectedBoard)
116+
);
115117
}
116118

117119
onStop(): void {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.