Set purge interval to 1 hour

This commit is contained in:
Calvin Montgomery 2018-12-05 21:55:44 -08:00
parent c5c88264f7
commit 76328fed07
2 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,7 @@
"author": "Calvin Montgomery",
"name": "CyTube",
"description": "Online media synchronizer and chat",
"version": "3.62.1",
"version": "3.63.0",
"repository": {
"url": "http://github.com/calzoneman/sync"
},

View File

@ -89,8 +89,7 @@ function initAccountCleanup() {
})().catch(error => {
LOGGER.error('Error purging deleted accounts: %s', error.stack);
});
//}, 3600 * 1000);
}, 60 * 1000);
}, 3600 * 1000);
}
module.exports = function (Server) {