mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
Add character limit to descriptions. Closes #14
This commit is contained in:
parent
16173e428b
commit
5930f490ce
2 changed files with 8 additions and 0 deletions
|
|
@ -63,6 +63,10 @@ async def member_set(ctx: CommandContext):
|
|||
if bounds_error:
|
||||
return CommandError(bounds_error)
|
||||
|
||||
if prop == "description":
|
||||
if len(value) > 1024:
|
||||
return CommandError("You can't have a description longer than 1024 characters.")
|
||||
|
||||
if prop == "color":
|
||||
match = re.fullmatch("#?([0-9A-Fa-f]{6})", value)
|
||||
if not match:
|
||||
|
|
|
|||
|
|
@ -59,6 +59,10 @@ async def system_set(ctx: CommandContext):
|
|||
if ctx.has_next():
|
||||
value = ctx.remaining()
|
||||
# Sanity checking
|
||||
if prop == "description":
|
||||
if len(value) > 1024:
|
||||
return CommandError("You can't have a description longer than 1024 characters.")
|
||||
|
||||
if prop == "tag":
|
||||
if len(value) > 32:
|
||||
return CommandError("You can't have a system tag longer than 32 characters.")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue