From 96999be84ae64814a7d7ec116079526bc77a638b Mon Sep 17 00:00:00 2001 From: coward Date: Thu, 5 Dec 2024 15:09:52 +0800 Subject: [PATCH] =?UTF-8?q?:art:=E4=BF=AE=E6=94=B9=E9=80=9A=E7=9F=A5?= =?UTF-8?q?=E6=A8=A1=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cron/task/client.go | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/cron/task/client.go b/cron/task/client.go index f70a863..c4796cc 100644 --- a/cron/task/client.go +++ b/cron/task/client.go @@ -81,12 +81,10 @@ func (c networkClient) ClientOfflineNotify() { } // 已经离线,发送通知 - msg := fmt.Sprintf(` -[离线通知] \n -客户端名称 : %v \n -客户端IP : %v \n -最后在线时间 : %v - `, clientName, ipAllocation, peer.LastHandshakeTime.Format("2006-01-02 15:04:05")) + msg := fmt.Sprintf(`[离线通知] +客户端名称 : %v +客户端IP : %v +最后在线时间 : %v`, clientName, ipAllocation, peer.LastHandshakeTime.Format("2006-01-02 15:04:05")) err := utils.WechatNotify(code).SendTextMessage(msg) if err != nil { log.Errorf("微信消息[%v]通知失败: %v", msg, err.Error())