Merge pull request #998 from slingamn/operator_topic

treat channel founder as such even if they don't have +q
This commit is contained in:
Shivaram Lingamneni 2020-05-10 22:51:07 -07:00 committed by GitHub
commit 51c65f999d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -515,8 +515,13 @@ func channelUserModeHasPrivsOver(clientMode modes.Mode, targetMode modes.Mode) b
func (channel *Channel) ClientIsAtLeast(client *Client, permission modes.Mode) bool {
channel.stateMutex.RLock()
clientModes := channel.members[client]
founder := channel.registeredFounder
channel.stateMutex.RUnlock()
if founder != "" && founder == client.Account() {
return true
}
for _, mode := range modes.ChannelUserModes {
if clientModes.HasMode(mode) {
return true