mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 09:46:25 +08:00
fix content length in note revisions
This commit is contained in:
parent
c115628f1f
commit
8d3a3d4873
1 changed files with 2 additions and 0 deletions
|
@ -43,6 +43,8 @@ class NoteRevision extends AbstractEntity {
|
|||
this.utcDateCreated = row.utcDateCreated;
|
||||
/** @param {string} */
|
||||
this.utcDateModified = row.utcDateModified;
|
||||
/** @param {number} */
|
||||
this.contentLength = row.contentLength;
|
||||
|
||||
if (this.isProtected) {
|
||||
if (protectedSessionService.isProtectedSessionAvailable()) {
|
||||
|
|
Loading…
Reference in a new issue