Disable TTL on user accounts.

The biggest skill issue so far.
This commit is contained in:
Cohee 2024-04-16 02:49:30 +03:00
parent 57314443ed
commit f947c1304a

View File

@ -336,7 +336,7 @@ async function initUserStorage(dataRoot) {
console.log();
await storage.init({
dir: path.join(DATA_ROOT, '_storage'),
ttl: true,
ttl: false, // Never expire
});
const keys = await getAllUserHandles();