From b12f1b62d48a417d93307f27fd4b5c8601359e85 Mon Sep 17 00:00:00 2001 From: klemek Date: Sun, 19 Jul 2026 18:29:26 +0200 Subject: [PATCH] fix: use task id as hash --- resources/ts/lib/tasks.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/ts/lib/tasks.ts b/resources/ts/lib/tasks.ts index 8c5988b..7a7f954 100644 --- a/resources/ts/lib/tasks.ts +++ b/resources/ts/lib/tasks.ts @@ -46,6 +46,7 @@ export function taskNextReset(task: Task): Date | null { try { const interval = CronExpressionParser.parse(task.reset_cron, { currentDate: task.check_date, + hashSeed: task.id, }); return interval.next().toDate(); } catch {