fix: 私聊带@报错,现已过滤私聊的at消息

This commit is contained in:
linyuchen 2024-03-07 17:37:57 +08:00
parent ba8ed36c6a
commit 7bfb3f2003
3 changed files with 6 additions and 3 deletions

View File

@ -1,10 +1,10 @@
{
"manifest_version": 4,
"type": "extension",
"name": "LLOneBot v3.13.5",
"name": "LLOneBot v3.13.6",
"slug": "LLOneBot",
"description": "LiteLoaderQQNT的OneBotApi",
"version": "3.13.5",
"version": "3.13.6",
"thumbnail": "./icon.png",
"authors": [
{

View File

@ -287,6 +287,9 @@ export class SendMsg extends BaseAction<OB11PostSendMsg, ReturnDataType> {
}
break;
case OB11MessageDataType.at: {
if (!group){
continue
}
let atQQ = sendMsg.data?.qq;
if (atQQ) {
atQQ = atQQ.toString()

View File

@ -1 +1 @@
export const version = "3.13.5"
export const version = "3.13.6"