From af01bacfa36d6f84533de53173e823d320881377 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 7 Sep 2023 19:50:51 -0400 Subject: [PATCH] fix(forums): added kwarg to resolved command so it detects multi-word strings without "" --- forums/forums.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forums/forums.py b/forums/forums.py index 4b5b7b4..7d61663 100644 --- a/forums/forums.py +++ b/forums/forums.py @@ -17,7 +17,7 @@ class Forums(commands.Cog): ) @commands.command() - async def resolved(self, ctx: commands.Context, reason: str = None): + async def resolved(self, ctx: commands.Context, *, reason: str = None): """Marks a thread as resolved.""" if isinstance(ctx.channel, discord.Thread) and ctx.channel.parent_id == await self.config.guild(ctx.guild).forum_channel(): request_role_ids = await self.config.guild(ctx.guild).request_roles()