diff --git a/discord/state.py b/discord/state.py index 5937fec32..a53674fd0 100644 --- a/discord/state.py +++ b/discord/state.py @@ -83,8 +83,7 @@ class ChunkRequest: future = self.loop.create_future() self.waiters.append(future) try: - await future - return True + return await future finally: self.waiters.remove(future)