Arthur
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
21 additions and
1 deletions
-
discord/threads.py
|
|
@ -47,7 +47,7 @@ if TYPE_CHECKING: |
|
|
|
ThreadArchiveDuration, |
|
|
|
) |
|
|
|
from .guild import Guild |
|
|
|
from .channel import TextChannel |
|
|
|
from .channel import TextChannel, CategoryChannel |
|
|
|
from .member import Member |
|
|
|
from .message import Message, PartialMessage |
|
|
|
from .abc import Snowflake, SnowflakeTime |
|
|
@ -238,6 +238,26 @@ class Thread(Messageable, Hashable): |
|
|
|
""" |
|
|
|
return self._state._get_message(self.last_message_id) if self.last_message_id else None |
|
|
|
|
|
|
|
@property |
|
|
|
def category(self) -> Optional[CategoryChannel]: |
|
|
|
"""The category channel the parent channel belongs to, if applicable. |
|
|
|
|
|
|
|
Raises |
|
|
|
------- |
|
|
|
ClientException |
|
|
|
The parent channel was not cached and returned ``None``. |
|
|
|
|
|
|
|
Returns |
|
|
|
------- |
|
|
|
Optional[:class:`CategoryChannel`] |
|
|
|
The parent channel's category. |
|
|
|
""" |
|
|
|
|
|
|
|
parent = self.parent |
|
|
|
if parent is None: |
|
|
|
raise ClientException('Parent channel not found') |
|
|
|
return parent.category |
|
|
|
|
|
|
|
@property |
|
|
|
def category_id(self) -> Optional[int]: |
|
|
|
"""The category channel ID the parent channel belongs to, if applicable. |
|
|
|