diff --git a/extensions/specialty.py b/extensions/specialty.py index 6dc2b88..4a733b9 100644 --- a/extensions/specialty.py +++ b/extensions/specialty.py @@ -163,8 +163,12 @@ Powered by kitsu.io""" resp = await resp.json() resp = resp['data'] + + query = discord.utils.escape_mentions(query) + query = discord.utils.escape_markdown(query) + if not resp: - return await ctx.send("The requested manga coudn't be found") + return await ctx.send(f"No results for `{query}`.") manga = resp[0] title = f'{manga["attributes"]["canonicalTitle"]}'