mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-07-21 22:27:13 +08:00
Correct the log information
This commit is contained in:
@@ -163,7 +163,7 @@ class DingTalkChanel(ChatChannel, dingtalk_stream.ChatbotHandler):
|
|||||||
elif cmsg.ctype == ContextType.PATPAT:
|
elif cmsg.ctype == ContextType.PATPAT:
|
||||||
logger.debug("[DingTalk]receive patpat msg: {}".format(cmsg.content))
|
logger.debug("[DingTalk]receive patpat msg: {}".format(cmsg.content))
|
||||||
elif cmsg.ctype == ContextType.TEXT:
|
elif cmsg.ctype == ContextType.TEXT:
|
||||||
logger.debug("[DingTalk]receive patpat msg: {}".format(cmsg.content))
|
logger.debug("[DingTalk]receive text msg: {}".format(cmsg.content))
|
||||||
else:
|
else:
|
||||||
logger.debug("[DingTalk]receive other msg: {}".format(cmsg.content))
|
logger.debug("[DingTalk]receive other msg: {}".format(cmsg.content))
|
||||||
context = self._compose_context(cmsg.ctype, cmsg.content, isgroup=True, msg=cmsg)
|
context = self._compose_context(cmsg.ctype, cmsg.content, isgroup=True, msg=cmsg)
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ class DingTalkMessage(ChatMessage):
|
|||||||
if self.is_group:
|
if self.is_group:
|
||||||
self.from_user_id = event.conversation_id
|
self.from_user_id = event.conversation_id
|
||||||
self.actual_user_id = event.sender_id
|
self.actual_user_id = event.sender_id
|
||||||
self.is_at = True # 群聊内,只有被艾特时候才会收到消息
|
self.is_at = True
|
||||||
else:
|
else:
|
||||||
self.from_user_id = event.sender_id
|
self.from_user_id = event.sender_id
|
||||||
self.actual_user_id = event.sender_id
|
self.actual_user_id = event.sender_id
|
||||||
|
|||||||
Reference in New Issue
Block a user