avoid errors from missing note cache during startup

This commit is contained in:
zadam 2021-01-30 22:25:40 +01:00
parent ba33a0d330
commit 9d7d79ef94

View File

@ -25,6 +25,10 @@ eventService.subscribe(eventService.NOTE_TITLE_CHANGED, note => {
if (!note.isRoot()) {
const noteFromCache = noteCache.notes[note.noteId];
if (!noteFromCache) {
return;
}
for (const parentNote of noteFromCache.parents) {
if (parentNote.hasLabel("sorted")) {
treeService.sortNotesAlphabetically(parentNote.noteId);