From bc5adf26d9c2553b7de7016a43a7cc4d92d8883f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= <lxh@cxh.cn>
Date: Thu, 11 Jul 2024 09:13:54 +0800
Subject: [PATCH] =?UTF-8?q?:art:=20=E4=BC=98=E5=8C=96`=E8=A2=AB=E7=A7=BB?=
 =?UTF-8?q?=E9=99=A4=E7=BE=A4=E8=81=8A=E9=80=9A=E7=9F=A5`=E9=80=BB?=
 =?UTF-8?q?=E8=BE=91?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 plugin/plugins/notify2configuser.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugin/plugins/notify2configuser.go b/plugin/plugins/notify2configuser.go
index dc8f9d4..e46d3a2 100644
--- a/plugin/plugins/notify2configuser.go
+++ b/plugin/plugins/notify2configuser.go
@@ -35,12 +35,12 @@ func NotifyRemoveFromChatroom(m *plugin.MessageContext) {
 	// 如果是被移出群聊,推送到配置的用户
 	if strings.HasPrefix(m.Content, "你被\"") && strings.HasSuffix(m.Content, "\"移出群聊") {
 		// 取出群名称
-		groupName, err := service.GetFriendInfoById(m.FromUser)
+		groupInfo, err := service.GetFriendInfoById(m.FromUser)
 		if err != nil {
 			return
 		}
 		// 组装消息
-		msg := fmt.Sprintf("#移除群聊提醒\n\n群Id: %s\n群名称: %s\n事件: %s", m.FromUser, groupName, m.Content)
+		msg := fmt.Sprintf("#移除群聊提醒\n\n群Id: %s\n群名称: %s\n事件: %s", m.FromUser, groupInfo.Nickname, m.Content)
 
 		for _, user := range config.Conf.System.NewFriendNotify.ToUser {
 			if user != "" {