This commit is contained in:
手瓜一十雪 2024-07-29 08:12:49 +08:00
parent b257486404
commit 92fe654850

View File

@ -518,7 +518,8 @@ export class NapCatOnebot11 {
} catch (e: any) {
logError('获取群通知的成员信息失败', notify, e.stack.toString());
}
} else if ([GroupNotifyTypes.JOIN_REQUEST].includes(notify.type)) {
//notify.status == 1 表示未处理 2表示处理完成
} else if ([GroupNotifyTypes.JOIN_REQUEST].includes(notify.type) && notify.status == 1) {
logDebug('有加群请求');
const groupRequestEvent = new OB11GroupRequestEvent();
groupRequestEvent.group_id = parseInt(notify.group.groupCode);