mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-06-07 20:28:38 +00:00
Fix various code around Message.interaction(_metadata)
This commit is contained in:
parent
0c353548e2
commit
2248fc1946
@ -715,7 +715,7 @@ class MessageInteractionMetadata(Hashable):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def original_response_message(self) -> Optional[Message]:
|
def original_response_message(self) -> Optional[Message]:
|
||||||
""":class:`~discord.Message`: The original response message if the message
|
"""Optional[:class:`~discord.Message`]: The original response message if the message
|
||||||
is a follow-up and is found in cache.
|
is a follow-up and is found in cache.
|
||||||
"""
|
"""
|
||||||
if self.original_response_message_id:
|
if self.original_response_message_id:
|
||||||
@ -724,7 +724,7 @@ class MessageInteractionMetadata(Hashable):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def interacted_message(self) -> Optional[Message]:
|
def interacted_message(self) -> Optional[Message]:
|
||||||
""":class:`~discord.Message`: The message that
|
"""Optional[:class:`~discord.Message`]: The message that
|
||||||
containes the interactive components, if applicable and is found in cache.
|
containes the interactive components, if applicable and is found in cache.
|
||||||
"""
|
"""
|
||||||
if self.interacted_message_id:
|
if self.interacted_message_id:
|
||||||
@ -2194,7 +2194,7 @@ class Message(PartialMessage, Hashable):
|
|||||||
return self._thread or self.guild.get_thread(self.id)
|
return self._thread or self.guild.get_thread(self.id)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
@deprecated("This attribute is deprecated, please use Message.interaction_metadata instead.")
|
@deprecated('interaction_metadata')
|
||||||
def interaction(self) -> Optional[MessageInteraction]:
|
def interaction(self) -> Optional[MessageInteraction]:
|
||||||
"""Optional[:class:`~discord.MessageInteraction`]: The interaction that this message is a response to.
|
"""Optional[:class:`~discord.MessageInteraction`]: The interaction that this message is a response to.
|
||||||
|
|
||||||
|
@ -667,8 +667,8 @@ class ViewStore:
|
|||||||
msg = interaction.message
|
msg = interaction.message
|
||||||
if msg is not None:
|
if msg is not None:
|
||||||
message_id = msg.id
|
message_id = msg.id
|
||||||
if msg.interaction:
|
if msg.interaction_metadata:
|
||||||
interaction_id = msg.interaction.id
|
interaction_id = msg.interaction_metadata.id
|
||||||
|
|
||||||
key = (component_type, custom_id)
|
key = (component_type, custom_id)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user