From 7f66e0fdfeade8faea2ba156ba5599b500898124 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 26 Dec 2017 15:55:04 +0300 Subject: [PATCH] Hide remove member button for supegroup admins. --- .../SourceFiles/profile/profile_channel_controllers.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/profile/profile_channel_controllers.cpp b/Telegram/SourceFiles/profile/profile_channel_controllers.cpp index 0a5c934e3..011e8a64f 100644 --- a/Telegram/SourceFiles/profile/profile_channel_controllers.cpp +++ b/Telegram/SourceFiles/profile/profile_channel_controllers.cpp @@ -611,8 +611,10 @@ void ParticipantsBoxController::rowActionClicked(not_null row) { bool ParticipantsBoxController::canEditAdminByRights( not_null user) const { - if (_additional.adminCanEdit.find(user) != _additional.adminCanEdit.cend()) { - return true; + if (_additional.adminRights.find(user) + != _additional.adminRights.cend()) { + return (_additional.adminCanEdit.find(user) + != _additional.adminCanEdit.cend()); } return (user != _additional.creator); }