Browse Source

Fix error when querying members from the gateway.

I accidentally made this return True instead of the actual member list
v1.5.x
Rapptz 5 years ago
parent
commit
707cb47438
  1. 3
      discord/state.py

3
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)

Loading…
Cancel
Save