1
1
Fork 0
mirror of https://github.com/zadam/trilium.git synced 2025-01-24 07:59:08 +08:00

fix activating tab when app was closed last time with "new tab"

This commit is contained in:
zadam 2019-11-17 10:24:06 +01:00
parent 1a87190f43
commit 834e1f7253

View file

@ -148,7 +148,7 @@ class TreeCache {
else {
return this.notes[noteId];
}
}).filter(note => note !== null);
}).filter(note => !!note);
}
/** @return {Promise<boolean>} */