From 2b884ace27b41e3bccbe3d92cd7ab619e9043d4b Mon Sep 17 00:00:00 2001 From: developer-wlj <55836679+developer-wlj@users.noreply.github.com> Date: Fri, 21 Jul 2023 22:14:52 +0800 Subject: [PATCH] Update __init__.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix 微信群发问题 --- app/modules/wechat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/wechat/__init__.py b/app/modules/wechat/__init__.py index dffff9ae..dfaa14df 100644 --- a/app/modules/wechat/__init__.py +++ b/app/modules/wechat/__init__.py @@ -133,7 +133,7 @@ class WechatModule(_ModuleBase): :return: 成功或失败 """ # 先发送标题 - self.wechat.send_msg(title=message.title) + self.wechat.send_msg(title=message.title, userid=message.userid) # 再发送内容 return self.wechat.send_medias_msg(medias=medias, userid=message.userid)