diff --git a/discord/ext/pages/pagination.py b/discord/ext/pages/pagination.py index 79147538c7..414bb9ba13 100644 --- a/discord/ext/pages/pagination.py +++ b/discord/ext/pages/pagination.py @@ -738,7 +738,7 @@ async def respond( ephemeral=ephemeral, ) # convert from WebhookMessage to Message reference to bypass 15min webhook token timeout - msg = msg.channel.get_partial_message(msg.id) or await msg.channel.fetch_message(msg.id) + msg = await msg.channel.fetch_message(msg.id) else: msg = await interaction.response.send_message( content=page if isinstance(page, str) else None,