🚑 Fix db_session and CQ escape
This commit is contained in:
parent
3d21d83bf0
commit
b650acb674
1 changed files with 7 additions and 6 deletions
|
@ -25,10 +25,11 @@ def recv_msg():
|
|||
and data["group_id"] == 346058845
|
||||
):
|
||||
name = data["raw_message"]
|
||||
with db_session:
|
||||
query = select(m for m in Melee if m.name == name)
|
||||
if query.count() > 0:
|
||||
return {
|
||||
"reply": f"[CQ]:image,file=http://localhost:7000/pics/{name}.png",
|
||||
"reply": f"[CQ:image,file=http://localhost:7000/pics/{name}.png]",
|
||||
"at_sender": False,
|
||||
}
|
||||
return "OK"
|
||||
|
|
Loading…
Reference in a new issue