Fix typo with archived_threads iterator leading to AttributeError

This commit is contained in:
Rapptz 2021-04-17 01:16:20 -04:00
parent 7c6724fdd7
commit cb9a506686

View File

@ -705,7 +705,7 @@ class ArchivedThreadIterator(_AsyncIterator['Thread']):
elif private:
self.endpoint = self.http.get_private_archived_threads
else:
self.endpoint = self.http.get_archived_threads
self.endpoint = self.http.get_public_archived_threads
self.queue: asyncio.Queue[Thread] = asyncio.Queue()
self.has_more: bool = True