diff --git a/discord/threads.py b/discord/threads.py index fbdf7a230..1a8a6af1e 100644 --- a/discord/threads.py +++ b/discord/threads.py @@ -448,3 +448,8 @@ class ThreadMember(Hashable): self.joined_at = parse_time(data['join_timestamp']) self.flags = data['flags'] + + @property + def thread(self) -> Thread: + """:class:`Thread`: The thread this member belongs to.""" + return self.parent