From 6fe0886c367e207bdd09b175a4b7255989b662f3 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Fri, 4 Oct 2019 04:18:05 +0200 Subject: [PATCH] Make sure all notes are loaded on startup --- lib/storage/git_storage.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/storage/git_storage.dart b/lib/storage/git_storage.dart index f26b91ae..21447c29 100644 --- a/lib/storage/git_storage.dart +++ b/lib/storage/git_storage.dart @@ -88,6 +88,7 @@ class GitNoteRepository { if (!note.filePath.toLowerCase().endsWith('.md')) { continue; } + await note.load(); notes.add(note); }