Browse Source

Update discord/interactions.py

Co-authored-by: Danny <[email protected]>
pull/9957/head
DA344 2 months ago
committed by GitHub
parent
commit
7ad73d020d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 12
      discord/interactions.py

12
discord/interactions.py

@ -722,16 +722,16 @@ class InteractionCallback(Generic[ClientT]):
self.type = try_enum(InteractionResponseType, resource['type'])
if 'message' in resource and resource['message']:
message = resource.get('message')
activity_instance = resource.get('activity_instance')
if message is not None:
self.resource = InteractionMessage(
state=self._state,
channel=self._parent.channel, # type: ignore # channel should be the correct type here
data=resource['message'],
)
elif 'activity_instance' in resource and resource['activity_instance']:
self.resource = InteractionCallbackActivityInstance(
resource['activity_instance'],
data=message,
)
elif activity_instance is not None:
self.resource = InteractionCallbackActivityInstance(activity_instance)
def is_thinking(self) -> bool:
""":class:`bool`: Whether the response was a thinking defer."""

Loading…
Cancel
Save