diff --git a/Telegram/SourceFiles/data/data_channel.cpp b/Telegram/SourceFiles/data/data_channel.cpp index 40f5ed35c..ca757f50c 100644 --- a/Telegram/SourceFiles/data/data_channel.cpp +++ b/Telegram/SourceFiles/data/data_channel.cpp @@ -381,7 +381,9 @@ bool ChannelData::canViewBanned() const { } bool ChannelData::canEditInformation() const { - return !amRestricted(Restriction::f_change_info); + return isMegagroup() + ? !amRestricted(Restriction::f_change_info) + : ((adminRights() & AdminRight::f_change_info) || amCreator()); } bool ChannelData::canEditPermissions() const {