chore(napcat_adapter): 增加回复消息的目标 ID 日志

This commit is contained in:
minecraft1024a
2025-09-24 17:32:46 +08:00
parent 51a6094072
commit e7dd4f2c31

View File

@@ -227,6 +227,7 @@ class SendHandler:
target_id = seg.data target_id = seg.data
if target_id == "notice": if target_id == "notice":
return payload return payload
logger.info(target_id if isinstance(target_id, str) else "")
new_payload = self.build_payload( new_payload = self.build_payload(
payload, payload,
await self.handle_reply_message(target_id if isinstance(target_id, str) else "", user_info), await self.handle_reply_message(target_id if isinstance(target_id, str) else "", user_info),