aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Senjan21 <[email protected]>2020-07-28 10:22:39 +0200
committerGravatar Senjan21 <[email protected]>2020-07-28 10:22:39 +0200
commit3fa1a0d03446500246f94df74fc3e3f86afe91ca (patch)
treea0dd228c9ed681b8bce151afc91aaf65eba9b5d0
parentAllow specifying a channel to send !embed embeds (diff)
fix poll command by using clean_content converter
-rw-r--r--bot/cogs/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/utils.py b/bot/cogs/utils.py
index 017f3419e..11b8e3e5e 100644
--- a/bot/cogs/utils.py
+++ b/bot/cogs/utils.py
@@ -7,7 +7,7 @@ from io import StringIO
from typing import Tuple, Union
from discord import Colour, Embed, utils
-from discord.ext.commands import BadArgument, Cog, Context, command
+from discord.ext.commands import BadArgument, Cog, Context, command, clean_content
from bot.bot import Bot
from bot.constants import Channels, MODERATION_ROLES, STAFF_ROLES
@@ -225,7 +225,7 @@ class Utils(Cog):
@command(aliases=("poll",))
@with_role(*MODERATION_ROLES)
- async def vote(self, ctx: Context, title: str, *options: str) -> None:
+ async def vote(self, ctx: Context, title: clean_content(fix_channel_mentions=True), *options: str) -> None:
"""
Build a quick voting poll with matching reactions with the provided options.