DA344
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
6 additions and
6 deletions
-
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.""" |
|
|
|