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:
parent
1a87190f43
commit
834e1f7253
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ class TreeCache {
|
|||
else {
|
||||
return this.notes[noteId];
|
||||
}
|
||||
}).filter(note => note !== null);
|
||||
}).filter(note => !!note);
|
||||
}
|
||||
|
||||
/** @return {Promise<boolean>} */
|
||||
|
|
Loading…
Reference in a new issue