1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-11 18:24:43 +02:00

Server: Fixed HandleOversizedAccounts task interval

This commit is contained in:
Laurent Cozic 2021-11-17 15:56:14 +00:00
parent 0bf323dc63
commit fc419d98c4

View File

@ -26,7 +26,7 @@ export default function(env: Env, models: Models, config: Config): TaskService {
{
id: TaskId.HandleOversizedAccounts,
description: 'Process oversized accounts',
schedule: '0 */2 30 * *',
schedule: '30 */2 * * *',
run: (models: Models) => models.user().handleOversizedAccounts(),
},