Merge branch 'hotfix' of https://github.com/TriliumNext/Trilium into hotfix

This commit is contained in:
Elian Doran 2025-11-11 11:24:47 +02:00
commit c30282fbd0
No known key found for this signature in database

View File

@ -159,7 +159,7 @@ function getEditedNotesOnDate(req: Request) {
SELECT noteId FROM notes
WHERE
(notes.dateCreated LIKE :date OR notes.dateModified LIKE :date)
AND (noteId NOT LIKE '_%')
AND (notes.noteId NOT LIKE '\\_%' ESCAPE '\\')
UNION ALL
SELECT noteId FROM revisions
WHERE revisions.dateCreated LIKE :date