From 905532b681a96ad2b2989d3abe2eba4c98b09e8c Mon Sep 17 00:00:00 2001 From: befantasy <31535803+befantasy@users.noreply.github.com> Date: Fri, 15 Sep 2023 16:21:27 +0800 Subject: [PATCH] Update chat_channel.py to support ReplyType.FILE --- channel/chat_channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channel/chat_channel.py b/channel/chat_channel.py index 4aa17be..ceada35 100644 --- a/channel/chat_channel.py +++ b/channel/chat_channel.py @@ -241,7 +241,7 @@ class ChatChannel(Channel): reply.content = reply_text elif reply.type == ReplyType.ERROR or reply.type == ReplyType.INFO: reply.content = "[" + str(reply.type) + "]\n" + reply.content - elif reply.type == ReplyType.IMAGE_URL or reply.type == ReplyType.VOICE or reply.type == ReplyType.IMAGE: + elif reply.type == ReplyType.IMAGE_URL or reply.type == ReplyType.VOICE or reply.type == ReplyType.IMAGE or reply.type == ReplyType.FILE: pass else: logger.error("[WX] unknown reply type: {}".format(reply.type))