fix permission error on desktop

This commit is contained in:
2022-11-02 23:40:42 +01:00
parent 65c851a416
commit ac1f388dd8
3 changed files with 9 additions and 10 deletions

View File

@@ -44,6 +44,6 @@ class NoteFile {
Future<void> close() async {
// shrink the db file size
await _db.execute('VACUUM');
_db.close();
await _db.close();
}
}