From 31c7dc52b354a83ef8c7a72f6788e6ad618085a2 Mon Sep 17 00:00:00 2001 From: Kichiyaki Date: Sat, 24 Oct 2020 12:27:19 +0200 Subject: [PATCH] uncomment unnecessary commented lines --- cron/cron.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cron/cron.go b/cron/cron.go index 2e0249e..cc009c8 100644 --- a/cron/cron.go +++ b/cron/cron.go @@ -44,9 +44,9 @@ func Attach(c *cron.Cron, cfg Config) error { } go func() { updateServerData() - // vacuumDatabase() - // updateHistory() - // updateStats() + vacuumDatabase() + updateHistory() + updateStats() }() return nil