mirror of
https://github.com/zadam/trilium.git
synced 2025-10-28 16:56:34 +01:00
messaging now uses mutex so each component processes only single message at each time
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user