From 90d651551ad47b69aee4ebc30a0f8733f86535f6 Mon Sep 17 00:00:00 2001 From: Juni Date: Fri, 15 Apr 2022 08:33:29 -0400 Subject: [PATCH] missed an await --- reactquote/reactquote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactquote/reactquote.py b/reactquote/reactquote.py index aac48da..f5a0ab6 100644 --- a/reactquote/reactquote.py +++ b/reactquote/reactquote.py @@ -142,7 +142,7 @@ class ReactQuote(commands.Cog): embed = discord.Embed(timestamp=timestamp) if len(ctx.message.mentions) > 0: member: discord.Member = ctx.message.mentions[0] - self._manualAddQuote(ctx.guild, member, quote) + await self._manualAddQuote(ctx.guild, member, quote) await ctx.send(f"New quote manually added by {ctx.author.display_name} as #{numQuotes}") guild_group = self.config.guild(ctx.guild) settings = await guild_group.reactQuotesSettings()