Fix members kick from group members dropdown.

This commit is contained in:
John Preston 2017-07-13 19:25:28 +03:00
parent 3db913f15b
commit 4c6e1b2b1f
1 changed files with 2 additions and 2 deletions

View File

@ -117,14 +117,14 @@ void GroupMembersWidget::removePeer(PeerData *selectedPeer) {
currentRestrictedRights = it->rights;
}
}
Ui::show(Box<ConfirmBox>(text, lang(lng_box_remove), base::lambda_guarded(this, [user, currentRestrictedRights, peer = peer()] {
Ui::show(Box<ConfirmBox>(text, lang(lng_box_remove), [user, currentRestrictedRights, peer = peer()] {
Ui::hideLayer();
if (auto chat = peer->asChat()) {
if (App::main()) App::main()->kickParticipant(chat, user);
} else if (auto channel = peer->asChannel()) {
if (App::api()) App::api()->kickParticipant(channel, user, currentRestrictedRights);
}
})));
}));
}
void GroupMembersWidget::notifyPeerUpdated(const Notify::PeerUpdate &update) {