Skip to content

Commit 4fcb515

Browse files
authored
Merge branch 'master' into interaction_attachment_metadata
Signed-off-by: Ice Wolfy <[email protected]>
2 parents 984cbac + 7bd9235 commit 4fcb515

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ These changes are available on the `master` branch, but have not yet been releas
6464
apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))
6565
- Fixed type annotations of cached properties.
6666
([#2635](https://github.com/Pycord-Development/pycord/issues/2635))
67-
- Fixed attachment metadata being set incorrectly in interaction responses causing it to
68-
be ignored. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))
67+
- Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally
68+
deferred interaction.
69+
([#2661](https://github.com/Pycord-Development/pycord/pull/2661))
70+
- Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to
71+
be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))
6972

7073
### Changed
7174

discord/ext/pages/pagination.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1202,7 +1202,7 @@ async def respond(
12021202
)
12031203
# convert from WebhookMessage to Message reference to bypass
12041204
# 15min webhook token timeout (non-ephemeral messages only)
1205-
if not ephemeral:
1205+
if not ephemeral and not msg.flags.ephemeral:
12061206
msg = await msg.channel.fetch_message(msg.id)
12071207
else:
12081208
msg = await interaction.response.send_message(

0 commit comments

Comments
 (0)