diff --git a/Telegram/SourceFiles/boxes/peers/edit_participant_box.cpp b/Telegram/SourceFiles/boxes/peers/edit_participant_box.cpp index f79077dc3..6bc6971ae 100644 --- a/Telegram/SourceFiles/boxes/peers/edit_participant_box.cpp +++ b/Telegram/SourceFiles/boxes/peers/edit_participant_box.cpp @@ -429,7 +429,16 @@ void EditAdminBox::transferOwnership() { )).fail([=](const RPCError &error) { _checkTransferRequestId = 0; if (!handleTransferPasswordError(error)) { - transferOwnershipChecked(); + getDelegate()->show(Box( + tr::lng_rights_transfer_about( + tr::now, + lt_group, + Ui::Text::Bold(peer()->name), + lt_user, + Ui::Text::Bold(user()->shortName()), + Ui::Text::RichLangValue), + lang(lng_rights_transfer_sure), + crl::guard(this, [=] { transferOwnershipChecked(); }))); } }).send(); }