handler.since should not subtract 30 minutes

This commit is contained in:
Dawid Wysokiński 2020-06-05 20:03:04 +02:00 committed by Kichiyaki
parent 4115558ee7
commit 5f9b114e13
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ type handler struct {
func AttachHandlers(c *cron.Cron, cfg Config) {
h := &handler{
since: time.Now().Add(-30 * time.Minute),
since: time.Now(),
serverRepo: cfg.ServerRepo,
tribeRepo: cfg.TribeRepo,
discord: cfg.Discord,