feat: notify.type == GroupNotifyMsgType.INVITED_NEED_ADMINI_STRATOR_PASS

This commit is contained in:
手瓜一十雪 2024-08-29 22:46:55 +08:00
parent 3987e0ee0b
commit 1a06841de0

View File

@ -473,6 +473,18 @@ export class NapCatOneBot11Adapter {
);
this.networkManager.emitEvent(groupInviteEvent)
.catch(e => this.context.logger.logError('处理邀请本人加群失败', e));
} else if (notify.type == GroupNotifyMsgType.INVITED_NEED_ADMINI_STRATOR_PASS && notify.status == GroupNotifyMsgStatus.KUNHANDLE) {
this.context.logger.logDebug(`收到群员邀请加群通知:${notify}`);
const groupInviteEvent = new OB11GroupRequestEvent(
this.core,
parseInt(notify.group.groupCode),
parseInt(await this.core.apis.UserApi.getUinByUidV2(notify.user2.uid)),
'invite',
notify.postscript,
flag,
);
this.networkManager.emitEvent(groupInviteEvent)
.catch(e => this.context.logger.logError('处理邀请本人加群失败', e));
}
}
}