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 { else {
return this.notes[noteId]; return this.notes[noteId];
} }
}).filter(note => note !== null); }).filter(note => !!note);
} }
/** @return {Promise<boolean>} */ /** @return {Promise<boolean>} */