fix automatically scheduled note deletion

This commit is contained in:
zadam 2020-12-09 22:45:34 +01:00
parent 81c6043cb6
commit 31876d2cf9

View file

@ -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 = {