mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	fix automatically scheduled note deletion
This commit is contained in:
		| @@ -831,9 +831,9 @@ function getNoteIdMapping(origNote) { | |||||||
|  |  | ||||||
| sqlInit.dbReady.then(() => { | sqlInit.dbReady.then(() => { | ||||||
|     // first cleanup kickoff 5 minutes after startup |     // first cleanup kickoff 5 minutes after startup | ||||||
|     setTimeout(cls.wrap(eraseDeletedNotes), 5 * 60 * 1000); |     setTimeout(cls.wrap(() => eraseDeletedNotes()), 5 * 60 * 1000); | ||||||
|  |  | ||||||
|     setInterval(cls.wrap(eraseDeletedNotes), 4 * 3600 * 1000); |     setInterval(cls.wrap(() => eraseDeletedNotes()), 4 * 3600 * 1000); | ||||||
| }); | }); | ||||||
|  |  | ||||||
| module.exports = { | module.exports = { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user