diff --git a/discord/threads.py b/discord/threads.py index cebb9fb4f..f6bc68f8e 100644 --- a/discord/threads.py +++ b/discord/threads.py @@ -235,6 +235,14 @@ class Thread(Messageable, Hashable): """:class:`str`: The string that allows you to mention the thread.""" return f'<#{self.id}>' + @property + def jump_url(self) -> str: + """:class:`str`: The string that allows you to mention the thread. + + .. versionadded:: 2.0 + """ + return f'https://discord.com/channels/{self.guild.id}/{self.id}' + @property def members(self) -> List[ThreadMember]: """List[:class:`ThreadMember`]: A list of thread members in this thread.