mirror of https://github.com/procxx/kepka.git
Fix pre-history visibility rights check.
This commit is contained in:
parent
be53cb027c
commit
8acd47bf2f
|
@ -394,12 +394,12 @@ bool ChannelData::canEditPermissions() const {
|
|||
}
|
||||
|
||||
bool ChannelData::canEditSignatures() const {
|
||||
return canEditInformation();
|
||||
return isChannel() && canEditInformation();
|
||||
}
|
||||
|
||||
bool ChannelData::canEditPreHistoryHidden() const {
|
||||
return canEditInformation()
|
||||
&& isMegagroup()
|
||||
return isMegagroup()
|
||||
&& ((adminRights() & AdminRight::f_ban_users) || amCreator())
|
||||
&& (!isPublic() || canEditUsername());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue