countdown: fix timer

This commit is contained in:
Chris Sexton 2020-12-31 12:36:48 -05:00
parent 0aaa3cb136
commit c20b4c8b17
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ import (
"github.com/velour/catbase/config" "github.com/velour/catbase/config"
) )
var nextYear = time.Date(time.Now().Year()+1, time.January, 0, 0, 0, 0, 0, time.Local) var nextYear = time.Date(time.Now().Year()+1, time.January, 1, 0, 0, 0, 1, time.Local)
var thisYear = time.Now().Year() var thisYear = time.Now().Year()
type CountdownPlugin struct { type CountdownPlugin struct {