From cab8926b4bf61160b675c86b188cf1527ca95491 Mon Sep 17 00:00:00 2001 From: chenyifan01 Date: Tue, 21 Feb 2023 11:32:12 +0800 Subject: [PATCH] fix bug --- modules/auth/wechat/point.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/auth/wechat/point.go b/modules/auth/wechat/point.go index e77e75cbe2..8125220871 100644 --- a/modules/auth/wechat/point.go +++ b/modules/auth/wechat/point.go @@ -31,7 +31,7 @@ func (CloudbrainComingToStopMsg) ShouldSend(ctx *TemplateContext) bool { } func (CloudbrainComingToStopMsg) MsgId(ctx *TemplateContext) string { - return "coming_stop_" + fmt.Sprint(ctx.Cloudbrain.ID) + return "coming_stop_" + fmt.Sprint(ctx.Cloudbrain.ID) + "_" + fmt.Sprint(time.Now().Unix()) } func (CloudbrainComingToStopMsg) Url(ctx *TemplateContext) string { -- 2.34.1