瀏覽代碼

Merge pull request #587 from lanvent/dev2

fix: request qrscan when hotreload failed
master
zhayujie GitHub 2 年之前
父節點
當前提交
f805b29a8c
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 14 行新增2 行删除
  1. +14
    -2
      channel/wechat/wechat_channel.py

+ 14
- 2
channel/wechat/wechat_channel.py 查看文件

@@ -4,6 +4,7 @@
wechat channel wechat channel
""" """


import os
import itchat import itchat
import json import json
from itchat.content import * from itchat.content import *
@@ -50,9 +51,20 @@ class WechatChannel(Channel):
pass pass


def startup(self): def startup(self):
# login by scan QRCode
itchat.auto_login(enableCmdQR=2, hotReload=conf().get('hot_reload', False))


itchat.instance.receivingRetryCount = 600 # 修改断线超时时间
# login by scan QRCode
hotReload = conf().get('hot_reload', False)
try:
itchat.auto_login(enableCmdQR=2, hotReload=hotReload)
except Exception as e:
if hotReload:
logger.error("Hot reload failed, try to login without hot reload")
itchat.logout()
os.remove("itchat.pkl")
itchat.auto_login(enableCmdQR=2, hotReload=hotReload)
else:
raise e
# start message listener # start message listener
itchat.run() itchat.run()




Loading…
取消
儲存