change the way frontend detects content change which works even if no new blob is created, fixes #4434

This commit is contained in:
zadam
2023-11-13 23:53:14 +01:00
parent 69ed3644f9
commit cf068211ff
9 changed files with 90 additions and 89 deletions

View File

@@ -93,6 +93,9 @@ class FNote {
* @type {string}
*/
this.mime = row.mime;
// the main use case to keep this is to detect content change which should trigger refresh
this.blobId = row.blobId;
}
addParent(parentNoteId, branchId, sort = true) {