Fix: Fixed the incorrect extraction method of sender ID when converting aiocqhttp reply messages (#1624)

* fix: update invoke_embedding to return only embeddings from client.embed

* fix: Fixed the incorrect extraction method of sender ID when converting aiocqhttp reply messages
This commit is contained in:
Ljzd_PRO
2025-08-21 20:46:26 +08:00
committed by GitHub
parent 8a7df423ab
commit df524b8a7a

View File

@@ -266,7 +266,7 @@ class AiocqhttpMessageConverter(adapter.MessageConverter):
await process_message_data(msg_data, reply_list)
reply_msg = platform_message.Quote(
message_id=msg.data['id'], sender_id=msg_datas['user_id'], origin=reply_list
message_id=msg.data['id'], sender_id=msg_datas['sender']['user_id'], origin=reply_list
)
yiri_msg_list.append(reply_msg)