Browse Source

Sync views in InteractionResponse.edit_message

pull/7005/head
Rapptz 4 years ago
parent
commit
61a189c217
  1. 6
      discord/interactions.py

6
discord/interactions.py

@ -417,4 +417,10 @@ class InteractionResponse:
type=InteractionResponseType.message_update.value,
data=payload,
)
if view is not MISSING:
msg = self._parent.message
message_id = msg.id if msg else None
self._parent._state.store_view(view, message_id)
self._responded = True

Loading…
Cancel
Save