mirror of
https://github.com/zadam/trilium.git
synced 2025-11-06 13:26:01 +01:00
adding few missing isErased = 0 conditions
This commit is contained in:
@@ -23,7 +23,8 @@ function getRecentChanges(req) {
|
||||
note_revisions.dateCreated AS date
|
||||
FROM
|
||||
note_revisions
|
||||
JOIN notes USING(noteId)`);
|
||||
JOIN notes USING(noteId)
|
||||
WHERE note_revisions.isErased = 0`);
|
||||
|
||||
for (const noteRevision of noteRevisions) {
|
||||
if (noteCacheService.isInAncestor(noteRevision.noteId, ancestorNoteId)) {
|
||||
|
||||
Reference in New Issue
Block a user