parent
e938fe7d27
commit
b7f25d0631
1 changed files with 3 additions and 2 deletions
|
|
@ -594,8 +594,9 @@ export default {
|
||||||
// Is the other member the one we are looking for?
|
// Is the other member the one we are looking for?
|
||||||
if (this.isDirectRoomWith(room, userId)) {
|
if (this.isDirectRoomWith(room, userId)) {
|
||||||
var member = room.getMember(userId);
|
var member = room.getMember(userId);
|
||||||
if (member && member.membership == "invite") {
|
if (member && member.membership != "join") {
|
||||||
// TODO Resend invite
|
// Resend invite
|
||||||
|
this.matrixClient.invite(room.roomId, userId);
|
||||||
}
|
}
|
||||||
resolve(room);
|
resolve(room);
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue