Fix issue with reminder not found
This commit is contained in:
parent
a220b29303
commit
2235479b40
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ class RemindmeCog(Scale):
|
|||
async def _fetch(self, ctx: InteractionContext, id: str) -> None:
|
||||
reminder = await Reminder.find_one(q(id=id))
|
||||
if not reminder:
|
||||
await ctx.send(f"Reminder `{id}` does not exist", hidden=True)
|
||||
await ctx.send(f"Reminder `{id}` does not exist", ephemeral=True)
|
||||
return
|
||||
|
||||
embed = build_embed(title="You have a reminder!", description=reminder.message, fields=[])
|
||||
|
|
Loading…
Add table
Reference in a new issue