|
|
@ -610,7 +610,7 @@ class InteractionResponse: |
|
|
|
"""|coro| |
|
|
|
|
|
|
|
Responds to this interaction by editing the original message of |
|
|
|
a component interaction. |
|
|
|
a component or modal interaction. |
|
|
|
|
|
|
|
Parameters |
|
|
|
----------- |
|
|
@ -652,7 +652,7 @@ class InteractionResponse: |
|
|
|
msg = parent.message |
|
|
|
state = parent._state |
|
|
|
message_id = msg.id if msg else None |
|
|
|
if parent.type is not InteractionType.component: |
|
|
|
if parent.type not in (InteractionType.component, InteractionType.modal_submit): |
|
|
|
return |
|
|
|
|
|
|
|
if view is not MISSING and message_id is not None: |
|
|
|