Browse Source

Fix state parameter in Interaction.edit_original_message

pull/7670/head
Dawid K 3 years ago
committed by GitHub
parent
commit
5f2d9a9ffa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      discord/interactions.py

3
discord/interactions.py

@ -381,7 +381,8 @@ class Interaction:
)
# The message channel types should always match
message = InteractionMessage(state=self._state, channel=self.channel, data=data) # type: ignore
state = _InteractionMessageState(self, self._state)
message = InteractionMessage(state=state, channel=self.channel, data=data) # type: ignore
if view and not view.is_finished():
self._state.store_view(view, message.id)
return message

Loading…
Cancel
Save