messaging now uses mutex so each component processes only single message at each time

This commit is contained in:
zadam
2020-02-12 20:07:04 +01:00
parent 1d2fc773c2
commit 81a54cd4a0
5 changed files with 55 additions and 11 deletions

View File

@@ -372,7 +372,7 @@ export default class NoteTreeWidget extends TabAwareWidget {
}
async updateNode(node) {
const note = await treeCache.getNote(node.data.noteId);
const note = treeCache.getNoteFromCache(node.data.noteId);
const branch = treeCache.getBranch(node.data.branchId);
node.data.isProtected = note.isProtected;