Sfoglia il codice sorgente

Update wechat_channel.py to support ReplyType.FILE

develop
befantasy GitHub 1 anno fa
parent
commit
6bd286e8d5
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  1. +4
    -0
      channel/wechat/wechat_channel.py

+ 4
- 0
channel/wechat/wechat_channel.py Vedi File

@@ -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))

Loading…
Annulla
Salva