fix: temporarily remove unavailable channels

This commit is contained in:
Saboteur7
2025-02-05 12:25:30 +08:00
parent ccd50ec6c0
commit 436c038a2f

View File

@@ -117,23 +117,33 @@ class WechatChannel(ChatChannel):
def startup(self): def startup(self):
try: try:
itchat.instance.receivingRetryCount = 600 # 修改断线超时时间 time.sleep(3)
# login by scan QRCode logger.error("""[WechatChannel] 当前channel暂不可用目前支持的channel有:
hotReload = conf().get("hot_reload", False) 1. terminal: 终端
status_path = os.path.join(get_appdata_dir(), "itchat.pkl") 2. wechatmp: 个人公众号
itchat.auto_login( 3. wechatmp_service: 企业公众号
enableCmdQR=2, 4. wechatcom_app: 企微自建应用
hotReload=hotReload, 5. dingtalk: 钉钉
statusStorageDir=status_path, 6. feishu: 飞书
qrCallback=qrCallback, 7. web: 网页
exitCallback=self.exitCallback, 可修改 config.json 配置文件的 channel_type 字段进行切换""")
loginCallback=self.loginCallback # itchat.instance.receivingRetryCount = 600 # 修改断线超时时间
) # # login by scan QRCode
self.user_id = itchat.instance.storageClass.userName # hotReload = conf().get("hot_reload", False)
self.name = itchat.instance.storageClass.nickName # status_path = os.path.join(get_appdata_dir(), "itchat.pkl")
logger.info("Wechat login success, user_id: {}, nickname: {}".format(self.user_id, self.name)) # itchat.auto_login(
# start message listener # enableCmdQR=2,
itchat.run() # hotReload=hotReload,
# statusStorageDir=status_path,
# qrCallback=qrCallback,
# exitCallback=self.exitCallback,
# loginCallback=self.loginCallback
# )
# self.user_id = itchat.instance.storageClass.userName
# self.name = itchat.instance.storageClass.nickName
# logger.info("Wechat login success, user_id: {}, nickname: {}".format(self.user_id, self.name))
# # start message listener
# itchat.run()
except Exception as e: except Exception as e:
logger.exception(e) logger.exception(e)