File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments