ソースを参照

Update wechat_channel.py to support ReplyType.FILE

master
befantasy GitHub 1年前
コミット
6bd286e8d5
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更4行の追加0行の削除
  1. +4
    -0
      channel/wechat/wechat_channel.py

+ 4
- 0
channel/wechat/wechat_channel.py ファイルの表示

@@ -208,3 +208,7 @@ class WechatChannel(ChatChannel):
image_storage.seek(0)
itchat.send_image(image_storage, toUserName=receiver)
logger.info("[WX] sendImage, receiver={}".format(receiver))
elif reply.type == ReplyType.FILE: # 新增文件回复类型
file_storage = reply.content
itchat.send_file(file_storage, toUserName=receiver)
logger.info("[WX] sendFile, receiver={}".format(receiver))

読み込み中…
キャンセル
保存