This commit is contained in:
tiago.kayaya
2021-04-20 13:40:55 +01:00
parent e0d0a41774
commit 24ab72b0fe
3 changed files with 3 additions and 2 deletions
@@ -68,12 +68,14 @@ export class GroupContactsPage implements OnInit {
this.chatService.removeGroupMember(body).subscribe(res=>{
console.log(res);
this.getMembers();
this.loadUsers();
});
}
else if(this.room.t == "c"){
this.chatService.removeChannelMember(body).subscribe(res=>{
console.log(res);
this.getMembers();
this.loadUsers();
});
}
}