1
0
Fork 0
forked from External/ergo

Fix implementation of LIST <n

This commit is contained in:
Val Lorentz 2022-04-16 22:55:58 +02:00 committed by Shivaram Lingamneni
parent db547020c8
commit 777cb7c991

View file

@ -1052,7 +1052,7 @@ func (matcher *elistMatcher) Matches(channel *Channel) bool {
}
if matcher.MaxClientsActive {
if len(channel.Members()) < len(channel.members) {
if len(channel.Members()) > matcher.MaxClients {
return false
}
}