Browse Source

Document get_thread not fetching archived threads

pull/8347/head
mirnovov 3 years ago
committed by GitHub
parent
commit
5039b967a0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      discord/channel.py
  2. 5
      discord/guild.py

5
discord/channel.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

5
discord/guild.py

@ -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

Loading…
Cancel
Save