diff options
author | 2020-08-04 12:20:52 -0700 | |
---|---|---|
committer | 2020-08-04 12:20:52 -0700 | |
commit | 1344d3d6be3e6d244207996784987db5e48523a6 (patch) | |
tree | f8ca42ad83d715eb60e1894eb022e260b51437c7 | |
parent | Revert "Disabled burst_shared filter temporarily" (diff) |
Utils: show error message for long poll titles
Embeds have a maximum length of 256 for titles.
Fixes #1079
Fixes BOT-7Q
-rw-r--r-- | bot/cogs/utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bot/cogs/utils.py b/bot/cogs/utils.py index 91c6cb36e..d96abbd5a 100644 --- a/bot/cogs/utils.py +++ b/bot/cogs/utils.py @@ -232,6 +232,8 @@ class Utils(Cog): A maximum of 20 options can be provided, as Discord supports a max of 20 reactions on a single message. """ + if len(title) > 256: + raise BadArgument("The title cannot be longer than 256 characters.") if len(options) < 2: raise BadArgument("Please provide at least 2 options.") if len(options) > 20: |