From 4a348acfd8e9f650158c06cb91c0bb53080f9070 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= Date: Tue, 26 Sep 2023 15:03:04 +0800 Subject: [PATCH] :bug: Fix a bug. --- tasks/water_group.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/water_group.go b/tasks/water_group.go index 2b1c5af..e7766be 100644 --- a/tasks/water_group.go +++ b/tasks/water_group.go @@ -4,6 +4,7 @@ import ( "fmt" "go-wechat/client" "go-wechat/entity" + "go-wechat/utils" "log" "os" "strings" @@ -73,5 +74,5 @@ func dealYesterday(gid string) { notifyMsgs = append(notifyMsgs, " \n请未上榜的群友多多反思。") log.Printf("排行榜: \n%s", strings.Join(notifyMsgs, "\n")) - //go utils.SendMessage(gid, "", strings.Join(notifyMsgs, "\n")) + go utils.SendMessage(gid, "", strings.Join(notifyMsgs, "\n")) }