소스 검색

Update chat_channel.py to support ReplyType.FILE

befantasy 2 년 전
부모
커밋
905532b681
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      channel/chat_channel.py

+ 1 - 1
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))