From 02837bf136775d47a584ea3cbddef99732cb4ed1 Mon Sep 17 00:00:00 2001 From: Chris Sexton Date: Sat, 21 Aug 2021 07:24:15 -0400 Subject: [PATCH] first: fix time to use local --- plugins/first/first.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/first/first.go b/plugins/first/first.go index a5056fe..8839808 100644 --- a/plugins/first/first.go +++ b/plugins/first/first.go @@ -289,7 +289,7 @@ func (p *FirstPlugin) recordFirst(c bot.Connector, message msg.Message) { Msg("Recording first") first := &FirstEntry{ day: Midnight(time.Now()), - time: message.Time, + time: time.Now(), channel: message.Channel, body: message.Body, nick: message.User.Name,