Fixed aiocqhttp mirai.Voice类型无法正确传递url及base64的异常

This commit is contained in:
ElvisChenML 2024-07-25 16:14:24 +08:00 committed by RockChinQ
parent 5bebe01dd0
commit 70583f5ba0

View File

@ -47,6 +47,15 @@ class AiocqhttpMessageConverter(adapter.MessageConverter):
elif type(msg) is mirai.Face:
msg_list.append(aiocqhttp.MessageSegment.face(msg.face_id))
elif type(msg) is mirai.Voice:
arg = ''
if msg.base64:
arg = msg.base64
msg_list.append(aiocqhttp.MessageSegment.record(f"base64://{arg}"))
elif msg.url:
arg = msg.url
msg_list.append(aiocqhttp.MessageSegment.record(arg))
elif msg.path:
arg = msg.path
msg_list.append(aiocqhttp.MessageSegment.record(msg.path))
elif type(msg) is forward.Forward: