mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-07-20 05:27:59 +08:00
fix: 修复群语音触发bug
This commit is contained in:
@@ -65,7 +65,6 @@ def _check(func):
|
|||||||
if conf().get('hot_reload') == True and int(create_time) < int(time.time()) - 60: # 跳过1分钟前的历史消息
|
if conf().get('hot_reload') == True and int(create_time) < int(time.time()) - 60: # 跳过1分钟前的历史消息
|
||||||
logger.debug("[WX]history message {} skipped".format(msgId))
|
logger.debug("[WX]history message {} skipped".format(msgId))
|
||||||
return
|
return
|
||||||
print(create_time)
|
|
||||||
return func(self, msg)
|
return func(self, msg)
|
||||||
return wrapper
|
return wrapper
|
||||||
|
|
||||||
@@ -332,6 +331,8 @@ class WechatChannel(Channel):
|
|||||||
ContextType.TEXT, reply.content, **context.kwargs)
|
ContextType.TEXT, reply.content, **context.kwargs)
|
||||||
if new_context:
|
if new_context:
|
||||||
reply = self._generate_reply(new_context)
|
reply = self._generate_reply(new_context)
|
||||||
|
else:
|
||||||
|
return
|
||||||
else:
|
else:
|
||||||
logger.error('[WX] unknown context type: {}'.format(context.type))
|
logger.error('[WX] unknown context type: {}'.format(context.type))
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user