I have the following piece of code
# if the user isn't found, show an ephemeral message
if response.json().get("error") is not None:
# with an ephemeral message
ctx.respond(f"I couldn't find a Last.fm user with the name **{user}**. Please try again.", ephemeral=True)
return
The weird thing is that the message doesn't appear to be ephemeral, seems like it's being sent as a regular message and I have no idea why, any help?