Browse Source

Merge pull request #2262 from 6vision/cancel_wecom_subscribe

Cancel subscribe_msg of wechatcomapp channel
master
Saboteur7 GitHub 3 weeks ago
parent
commit
c248d0f3f4
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 5 deletions
  1. +6
    -5
      channel/wechatcom/wechatcomapp_channel.py

+ 6
- 5
channel/wechatcom/wechatcomapp_channel.py View File

@@ -162,11 +162,12 @@ class Query:
logger.debug("[wechatcom] receive message: {}, msg= {}".format(message, msg))
if msg.type == "event":
if msg.event == "subscribe":
reply_content = subscribe_msg()
if reply_content:
reply = create_reply(reply_content, msg).render()
res = channel.crypto.encrypt_message(reply, nonce, timestamp)
return res
pass
# reply_content = subscribe_msg()
# if reply_content:
# reply = create_reply(reply_content, msg).render()
# res = channel.crypto.encrypt_message(reply, nonce, timestamp)
# return res
else:
try:
wechatcom_msg = WechatComAppMessage(msg, client=channel.client)


Loading…
Cancel
Save