From f7ab8cfb6212fe85edf5641d42573f8f0b63f2a7 Mon Sep 17 00:00:00 2001 From: shoopea Date: Tue, 20 Oct 2020 11:48:07 +0200 Subject: [PATCH] fix --- cron.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cron.go b/cron.go index ae982f9..29f88dd 100644 --- a/cron.go +++ b/cron.go @@ -17,7 +17,7 @@ func startCron() *cron.Cron { c := cron.New(cron.WithLocation(time.UTC)) c.AddFunc("58 6,14,22 * * *", cronSetDef) c.AddFunc("00 0 * * *", cronUpdateAngryBirbs) - c.AddFunc("01 0 * * *", cronScrubData) + c.AddFunc("01 * * * *", cronScrubData) c.AddFunc("02 1,3,5,9,11,13,17,19,21 * * *", cronGetHammerTime) c.AddFunc("12 7,15,23 * * *", cronGetHammerTime) c.AddFunc("13 3,7,11,15,19,23 * * *", cronTribute)