From 70476c9fc9b34dda42c18ec1b68bf03704dafa03 Mon Sep 17 00:00:00 2001 From: jesopo Date: Wed, 30 Sep 2020 11:11:06 +0000 Subject: [PATCH] _pending_who.pop() -> _pending_who.popleft(), or we WHO the same chan --- ircrobots/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircrobots/server.py b/ircrobots/server.py index 2cf391e..ff97a5c 100644 --- a/ircrobots/server.py +++ b/ircrobots/server.py @@ -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