adding few missing isErased = 0 conditions

This commit is contained in:
zadam
2020-12-10 21:56:48 +01:00
parent 0ac42608f7
commit 5010175b84
3 changed files with 5 additions and 4 deletions

View File

@@ -776,7 +776,7 @@ class Note extends Entity {
* @returns {NoteRevision[]}
*/
getRevisions() {
return this.repository.getEntities("SELECT * FROM note_revisions WHERE noteId = ?", [this.noteId]);
return this.repository.getEntities("SELECT * FROM note_revisions WHERE isErased = 0 AND noteId = ?", [this.noteId]);
}
/**
@@ -806,7 +806,7 @@ class Note extends Entity {
* @returns {boolean} - true if note has children
*/
hasChildren() {
return (this.getChildNotes()).length > 0;
return this.getChildNotes().length > 0;
}
/**