mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-06-07 12:18:59 +00:00
Fix typo with archived_threads iterator leading to AttributeError
This commit is contained in:
parent
7c6724fdd7
commit
cb9a506686
@ -705,7 +705,7 @@ class ArchivedThreadIterator(_AsyncIterator['Thread']):
|
|||||||
elif private:
|
elif private:
|
||||||
self.endpoint = self.http.get_private_archived_threads
|
self.endpoint = self.http.get_private_archived_threads
|
||||||
else:
|
else:
|
||||||
self.endpoint = self.http.get_archived_threads
|
self.endpoint = self.http.get_public_archived_threads
|
||||||
|
|
||||||
self.queue: asyncio.Queue[Thread] = asyncio.Queue()
|
self.queue: asyncio.Queue[Thread] = asyncio.Queue()
|
||||||
self.has_more: bool = True
|
self.has_more: bool = True
|
||||||
|
Loading…
x
Reference in New Issue
Block a user