This commit is contained in:
Shivaram Lingamneni 2020-11-01 18:09:04 -05:00
parent 40118d1533
commit dac43e6e76
1 changed files with 1 additions and 1 deletions

View File

@ -1256,7 +1256,7 @@ func (channel *Channel) isMuted(client *Client) bool {
if muteRe == nil {
return false
}
nuh := client.NickMaskString()
nuh := client.NickMaskCasefolded()
return muteRe.MatchString(nuh) && !channel.lists[modes.ExceptMask].MatchMute(nuh)
}