Skip to content

Commit 6aa3ff8

Browse files
authored
Merge pull request #141 from bcmi-labs/arduino/arduino-pro-ide#311
GH-311: Fixed FS path to URI conversion issue.
2 parents c6ad0f5 + 4b44113 commit 6aa3ff8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-ide-extension/src/node/sketches-service-impl.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ void loop() {
324324
for (let i = 0; i < files.length; i++) {
325325
if (files[i] === basename + '.ino') {
326326
try {
327-
await this.loadSketch(fsPath);
327+
await this.loadSketch(FileUri.create(fsPath).toString());
328328
return true;
329329
} catch { }
330330
}

0 commit comments

Comments
 (0)