We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d4369e commit d8855feCopy full SHA for d8855fe
interactions/models/internal/context.py
@@ -406,7 +406,7 @@ async def _send_http_request(
406
if const.has_client_feature("FOLLOWUP_INTERACTIONS_FOR_IMAGES") and not self.deferred:
407
# experimental bypass for discords broken image proxy
408
if embeds := message_payload.get("embeds", {}):
409
- if any(e.get("image") for e in embeds):
+ if any(e.get("image") for e in embeds) or any(e.get("thumbnail") for e in embeds):
410
if MessageFlags.EPHEMERAL in message_payload.get("flags", MessageFlags.NONE):
411
self.ephemeral = True
412
await self.defer(ephemeral=self.ephemeral)
0 commit comments