_pending_who.pop() -> _pending_who.popleft(), or we WHO the same chan

This commit is contained in:
jesopo 2020-09-30 11:11:06 +00:00
parent 8aaad83dbe
commit 70476c9fc9
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ class Server(IServer):
chan = self.casefold(line.params[1])
if (self._pending_who and
self._pending_who[0] == chan):
self._pending_who.pop()
self._pending_who.popleft()
await self._next_who()
elif (line.command == ERR_NICKNAMEINUSE and