Browse Source

Update flags and applied tags on thread update

pull/9444/head
Lilly Rose Berner 3 years ago
committed by GitHub
parent
commit
e8f6b29a2d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/threads.py
  2. 1
      discord/types/threads.py

2
discord/threads.py

@ -210,6 +210,8 @@ class Thread(Messageable, Hashable):
pass
self.slowmode_delay = data.get('rate_limit_per_user', 0)
self._flags: int = data.get('flags', 0)
self._applied_tags: array.array[int] = array.array('Q', map(int, data.get('applied_tags', [])))
try:
self._unroll_metadata(data['thread_metadata'])

1
discord/types/threads.py

@ -67,6 +67,7 @@ class Thread(TypedDict):
last_pin_timestamp: NotRequired[Optional[Snowflake]]
newly_created: NotRequired[bool]
flags: NotRequired[int]
applied_tags: NotRequired[List[Snowflake]]
class ThreadPaginationPayload(TypedDict):

Loading…
Cancel
Save