Skip to content

Commit d744aa9

Browse files
committed
Fix bug blocking upload after opening IDE
1 parent 7fc2475 commit d744aa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: arduino-ide-extension/src/browser/contributions/upload-sketch.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export class UploadSketch extends SketchContribution {
6363
if (!fqbn) {
6464
return "";
6565
}
66-
const address = boardsConfig.selectedBoard?.port?.address
66+
const address = boardsConfig.selectedPort?.address;
6767
if (!address) {
6868
return "";
6969
}

0 commit comments

Comments
 (0)