mirror of
https://github.com/ergochat/ergo.git
synced 2025-12-20 10:10:08 -08:00
Merge pull request #1934 from progval/patch-5
Fix implementation of `LIST <n`
This commit is contained in:
commit
504cc44bf7
1 changed files with 1 additions and 1 deletions
|
|
@ -1090,7 +1090,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
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue