Make sure all notes are loaded on startup

This commit is contained in:
Vishesh Handa
2019-10-04 04:18:05 +02:00
parent 27bcbb32fb
commit 6fe0886c36

View File

@ -88,6 +88,7 @@ class GitNoteRepository {
if (!note.filePath.toLowerCase().endsWith('.md')) {
continue;
}
await note.load();
notes.add(note);
}