fix: 修复一些已知问题

This commit is contained in:
Soulter
2023-04-11 10:28:29 +08:00
parent 79f293e248
commit 79af4ce381
+3 -1
View File
@@ -626,4 +626,6 @@ class gocqClient():
@gocq_app.receiver("GroupMemberIncrease")
async def _(app: CQHTTP, source: GroupMemberIncrease):
await app.send_group_msg(group_id=source.group_id, message=f"欢迎 {source.member_id} 加入本群!\n欢迎给https://github.com/Soulter/QQChannelChatGPT项目一个Star😊~")
await app.sendGroupMessage(source.group_id, [
Plain(text=f"欢迎 {source.member_id} 加入本群!\n欢迎给https://github.com/Soulter/QQChannelChatGPT项目一个Star😊~")
])