Merge pull request #325 from velour/omnibus

countdown: fix timer
This commit is contained in:
Chris Sexton 2020-12-31 12:40:18 -05:00 committed by GitHub
commit f7340983e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {