From 2931667064effd26c7256811387559295f00ebec Mon Sep 17 00:00:00 2001 From: SSMario Date: Wed, 12 Jul 2023 11:59:15 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=99=BB=E5=BD=95=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- channel/wechat/wechat_channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channel/wechat/wechat_channel.py b/channel/wechat/wechat_channel.py index dcf6c99b..f8f5991f 100644 --- a/channel/wechat/wechat_channel.py +++ b/channel/wechat/wechat_channel.py @@ -43,7 +43,7 @@ def startup(self): # login by scan QRCode hot_reload = channel_conf_val(const.WECHAT, 'hot_reload', True) if channel_conf_val(const.WECHAT, 'receive_qrcode_api'): - itchat.auto_login(enableCmdQR=2, hot_reload=hot_reload, qrCallback=self.login) + itchat.auto_login(enableCmdQR=2, hotReload=hot_reload, qrCallback=self.login) else: itchat.auto_login(enableCmdQR=2, hotReload=hot_reload)