mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	correctly handle 0 notes to erase
This commit is contained in:
		| @@ -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(); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user