Skip to content

Commit de24263

Browse files
authored
fix: properly pass in ephemeral for hybrid ctx (#1468)
1 parent 0301e4e commit de24263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interactions/ext/hybrid_commands/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ async def send(
290290
New message object that was sent.
291291
"""
292292
flags = MessageFlags(flags or 0)
293-
if ephemeral and not self._slash_ctx:
293+
if ephemeral and self._slash_ctx:
294294
flags |= MessageFlags.EPHEMERAL
295295
self.ephemeral = True
296296
if suppress_embeds:

0 commit comments

Comments
 (0)