From 6cb9a848988f2d9bf88893eae5548cf42795068c Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 24 Jan 2023 11:10:22 -0500 Subject: [PATCH] Fix views not being removed from message store backing This uses the original interaction ID if available for cache eviction --- discord/interactions.py | 12 ++++++++++-- discord/ui/view.py | 1 + 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/discord/interactions.py b/discord/interactions.py index 9c39cdc7c..02860ba53 100644 --- a/discord/interactions.py +++ b/discord/interactions.py @@ -860,7 +860,15 @@ class InteractionResponse(Generic[ClientT]): parent = self._parent msg = parent.message state = parent._state - message_id = msg.id if msg else None + if msg is not None: + message_id = msg.id + # If this was invoked via an application command then we can use its original interaction ID + # Since this is used as a cache key for view updates + original_interaction_id = msg.interaction.id if msg.interaction is not None else None + else: + message_id = None + original_interaction_id = None + if parent.type not in (InteractionType.component, InteractionType.modal_submit): return @@ -890,7 +898,7 @@ class InteractionResponse(Generic[ClientT]): ) if view and not view.is_finished(): - state.store_view(view, message_id) + state.store_view(view, message_id, interaction_id=original_interaction_id) self._response_type = InteractionResponseType.message_update diff --git a/discord/ui/view.py b/discord/ui/view.py index 6c37fe7a9..58f0f0c7c 100644 --- a/discord/ui/view.py +++ b/discord/ui/view.py @@ -638,6 +638,7 @@ class ViewStore: def remove_interaction_mapping(self, interaction_id: int) -> None: # This is called before re-adding the view self._views.pop(interaction_id, None) + self._synced_message_views.pop(interaction_id, None) def is_message_tracked(self, message_id: int) -> bool: return message_id in self._synced_message_views