Browse Source

Fix InteractionCallbackResponse.resource having incorrect state

Fix InteractionCallbackResponse.resource being created
with a ConnectionState instead of _InteractionMessageState
pull/10111/head
DA344 1 month ago
committed by GitHub
parent
commit
0e4f06103e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      discord/interactions.py

2
discord/interactions.py

@ -727,7 +727,7 @@ class InteractionCallbackResponse(Generic[ClientT]):
activity_instance = resource.get('activity_instance')
if message is not None:
self.resource = InteractionMessage(
state=self._state,
state=_InteractionMessageState(self._parent, self._state), # pyright: ignore[reportArgumentType]
channel=self._parent.channel, # type: ignore # channel should be the correct type here
data=message,
)

Loading…
Cancel
Save