mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +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)]); |     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 utcNowDateTime = dateUtils.utcNowDateTime(); | ||||||
|     const localNowDateTime = dateUtils.localNowDateTime(); |     const localNowDateTime = dateUtils.localNowDateTime(); | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user