mirror of
https://github.com/zadam/trilium.git
synced 2025-01-19 13:37:58 +08:00
correctly handle 0 notes to erase
This commit is contained in:
parent
44add751b2
commit
86d7e139a4
1 changed files with 4 additions and 0 deletions
|
@ -450,6 +450,10 @@ async function eraseDeletedNotes() {
|
|||
|
||||
const noteIdsToErase = await sql.getColumn("SELECT noteId FROM notes WHERE isDeleted = 1 AND isErased = 0 AND notes.utcDateModified <= ?", [dateUtils.utcDateStr(cutoffDate)]);
|
||||
|
||||
if (noteIdsToErase.length === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
const utcNowDateTime = dateUtils.utcNowDateTime();
|
||||
const localNowDateTime = dateUtils.localNowDateTime();
|
||||
|
||||
|
|
Loading…
Reference in a new issue