Update __init__.py

This commit is contained in:
HibiKier 2022-01-16 18:37:14 +08:00 committed by GitHub
parent 8022ae1fb1
commit 5ae41e1d38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,7 @@ async def _(bot: Bot, event: MessageEvent, state: T_State):
user_id = 0
if is_number(msg[1]):
group_id = int(msg[1])
text = msg[2]
text = " ".join(msg[2:])
else:
await reply.finish("群号错误...", at_sender=True)
else: