_pending_who.pop() -> _pending_who.popleft(), or we WHO the same chan
This commit is contained in:
parent
8aaad83dbe
commit
70476c9fc9
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ class Server(IServer):
|
||||||
chan = self.casefold(line.params[1])
|
chan = self.casefold(line.params[1])
|
||||||
if (self._pending_who and
|
if (self._pending_who and
|
||||||
self._pending_who[0] == chan):
|
self._pending_who[0] == chan):
|
||||||
self._pending_who.pop()
|
self._pending_who.popleft()
|
||||||
await self._next_who()
|
await self._next_who()
|
||||||
|
|
||||||
elif (line.command == ERR_NICKNAMEINUSE and
|
elif (line.command == ERR_NICKNAMEINUSE and
|
||||||
|
|
Loading…
Add table
Reference in a new issue