mirror of
https://github.com/paricafe/misskey.git
synced 2025-04-03 21:49:30 -05:00
fix(backend): 既存のルームメンバーを改めて招待できないように
This commit is contained in:
parent
5513337198
commit
8da1368a0b
1 changed files with 4 additions and 0 deletions
|
@ -518,6 +518,10 @@ export class ChatService {
|
|||
|
||||
const room = await this.chatRoomsRepository.findOneByOrFail({ id: roomId, ownerId: inviterId });
|
||||
|
||||
if (await this.isRoomMember(room, inviteeId)) {
|
||||
throw new Error('already member');
|
||||
}
|
||||
|
||||
const existingInvitation = await this.chatRoomInvitationsRepository.findOneBy({ roomId, userId: inviteeId });
|
||||
if (existingInvitation) {
|
||||
throw new Error('already invited');
|
||||
|
|
Loading…
Add table
Reference in a new issue