Skip to content

Commit 33ec671

Browse files
mark as recently opened only sketches that not includes sketch_ in the name
1 parent 4e590ab commit 33ec671

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ export class SketchesServiceImpl
277277
} catch {
278278
return;
279279
}
280-
if (await this.isTemp(sketch)) {
280+
if ((await this.isTemp(sketch)) && sketch.name.includes('sketch_')) {
281281
return;
282282
}
283283

0 commit comments

Comments
 (0)