mark as recently opened only sketches that not includes sketch_ in the name

This commit is contained in:
Francesco Spissu 2022-08-31 12:23:04 +02:00 committed by Francesco Spissu
parent 4e590ab618
commit 33ec67109b

View File

@ -277,7 +277,7 @@ export class SketchesServiceImpl
} catch {
return;
}
if (await this.isTemp(sketch)) {
if ((await this.isTemp(sketch)) && sketch.name.includes('sketch_')) {
return;
}