Browse Source

fix: wxcomapp user name

master
zhayujie 9 months ago
parent
commit
95708489c9
2 changed files with 13 additions and 4 deletions
  1. +5
    -1
      bot/linkai/link_ai_bot.py
  2. +8
    -3
      channel/wechat/wechat_channel.py

+ 5
- 1
bot/linkai/link_ai_bot.py View File

@@ -107,7 +107,11 @@ class LinkAIBot(Bot):
body["group_name"] = context.kwargs.get("msg").from_user_nickname body["group_name"] = context.kwargs.get("msg").from_user_nickname
body["sender_name"] = context.kwargs.get("msg").actual_user_nickname body["sender_name"] = context.kwargs.get("msg").actual_user_nickname
else: else:
body["sender_name"] = context.kwargs.get("msg").from_user_nickname
if body.get("channel_type") in ["wechatcom_app"]:
body["sender_name"] = context.kwargs.get("msg").from_user_id
else:
body["sender_name"] = context.kwargs.get("msg").from_user_nickname

except Exception as e: except Exception as e:
pass pass
file_id = context.kwargs.get("file_id") file_id = context.kwargs.get("file_id")


+ 8
- 3
channel/wechat/wechat_channel.py View File

@@ -251,20 +251,25 @@ class WechatChannel(ChatChannel):
def _send_login_success(): def _send_login_success():
try: try:
from common.linkai_client import chat_client from common.linkai_client import chat_client
chat_client.send_login_success()
if chat_client.client_id:
chat_client.send_login_success()
except Exception as e: except Exception as e:
pass pass


def _send_logout(): def _send_logout():
try: try:
from common.linkai_client import chat_client from common.linkai_client import chat_client
chat_client.send_logout()
time.sleep(2)
if chat_client.client_id:
chat_client.send_logout()
except Exception as e: except Exception as e:
pass pass


def _send_qr_code(qrcode_list: list): def _send_qr_code(qrcode_list: list):
try: try:
from common.linkai_client import chat_client from common.linkai_client import chat_client
chat_client.send_qrcode(qrcode_list)
time.sleep(2)
if chat_client.client_id:
chat_client.send_qrcode(qrcode_list)
except Exception as e: except Exception as e:
pass pass

Loading…
Cancel
Save