diff options
-rw-r--r-- | bot/exts/filtering/_ui/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/filtering/_ui/ui.py b/bot/exts/filtering/_ui/ui.py index c2961452d..ec5227198 100644 --- a/bot/exts/filtering/_ui/ui.py +++ b/bot/exts/filtering/_ui/ui.py @@ -558,7 +558,7 @@ class PhishConfirmationView(discord.ui.View): if not compban_command: await interaction.followup.send(':warning: Could not find the command "compban".') else: - ctx = FakeContext(interaction.message, interaction.channel, compban_command) + ctx = FakeContext(interaction.message, interaction.channel, compban_command, author=self.mod) await compban_command(ctx, self.offender) compf_command = bot.instance.get_command("compfilter") |