mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-05-12 16:59:50 +00:00
Use Queue instead of LifoQueue in LogsFromIterator.
That way you get the messages in newest to oldest rather than oldest to newest.
This commit is contained in:
parent
26e9b79a2d
commit
b64b89f484
@ -39,7 +39,7 @@ class LogsFromIterator:
|
|||||||
self.limit = limit
|
self.limit = limit
|
||||||
self.before = before
|
self.before = before
|
||||||
self.after = after
|
self.after = after
|
||||||
self.messages = asyncio.LifoQueue()
|
self.messages = asyncio.Queue()
|
||||||
|
|
||||||
@asyncio.coroutine
|
@asyncio.coroutine
|
||||||
def fill_messages(self):
|
def fill_messages(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user