-
-
Notifications
You must be signed in to change notification settings - Fork 478
Closed
Description
Line: 850
Lines 847 to 857 in 6fbb08e
| self.interaction = MessageInteraction(data=data["interaction"], state=state) | |
| except KeyError: | |
| self.interaction = None | |
| # TODO: deprecate and replace with interaction_metadata | |
| self.thread: Thread | None | |
| try: | |
| self.thread = Thread( | |
| guild=self.guild, state=self._state, data=data["thread"] | |
| ) | |
| except KeyError: |