Browse Source
Document get_thread not fetching archived threads
pull/8347/head
mirnovov
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
10 additions and
0 deletions
-
discord/channel.py
-
discord/guild.py
|
|
@ -673,6 +673,11 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): |
|
|
|
def get_thread(self, thread_id: int, /) -> Optional[Thread]: |
|
|
|
"""Returns a thread with the given ID. |
|
|
|
|
|
|
|
.. note:: |
|
|
|
|
|
|
|
This does not always retrieve archived threads, as they are not retained in the internal |
|
|
|
cache. Use :func:`Guild.fetch_channel` instead. |
|
|
|
|
|
|
|
.. versionadded:: 2.0 |
|
|
|
|
|
|
|
Parameters |
|
|
|
|
|
@ -739,6 +739,11 @@ class Guild(Hashable): |
|
|
|
def get_thread(self, thread_id: int, /) -> Optional[Thread]: |
|
|
|
"""Returns a thread with the given ID. |
|
|
|
|
|
|
|
.. note:: |
|
|
|
|
|
|
|
This does not always retrieve archived threads, as they are not retained in the internal |
|
|
|
cache. Use :func:`fetch_channel` instead. |
|
|
|
|
|
|
|
.. versionadded:: 2.0 |
|
|
|
|
|
|
|
Parameters |
|
|
|