Browse Source
Fix state parameter in Interaction.edit_original_message
pull/7670/head
Dawid K
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
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 |
|
|
|