mirror of
https://github.com/zadam/trilium.git
synced 2025-10-31 18:36:30 +01:00
attempt to make updating clients via websocket faster
This commit is contained in:
@@ -125,7 +125,8 @@ async function getEditedNotesOnDate(req) {
|
||||
SELECT noteId FROM note_revisions
|
||||
WHERE note_revisions.dateLastEdited LIKE '${date}%'
|
||||
)
|
||||
ORDER BY isDeleted`);
|
||||
ORDER BY isDeleted
|
||||
LIMIT 50`);
|
||||
|
||||
for (const note of notes) {
|
||||
const notePath = noteCacheService.getNotePath(note.noteId);
|
||||
|
||||
Reference in New Issue
Block a user