mirror of https://github.com/Mai-with-u/MaiBot.git
bug fix issue-614
parent
8ce971f230
commit
619a2b2769
|
|
@ -79,7 +79,10 @@ class MessageRecv(Message):
|
||||||
|
|
||||||
if message_segment.get("data", "") == "[json]":
|
if message_segment.get("data", "") == "[json]":
|
||||||
# 提取json消息中的展示信息
|
# 提取json消息中的展示信息
|
||||||
pattern = r"\[CQ:json,data=(?P<json_data>.+?)\]"
|
pattern = re.compile(
|
||||||
|
r"\[CQ:json,data=(?P<json_data>.+?)\]",
|
||||||
|
re.DOTALL
|
||||||
|
)
|
||||||
match = re.search(pattern, message_dict.get("raw_message", ""))
|
match = re.search(pattern, message_dict.get("raw_message", ""))
|
||||||
raw_json = html.unescape(match.group("json_data"))
|
raw_json = html.unescape(match.group("json_data"))
|
||||||
try:
|
try:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue