aboutsummaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorAnimal <24845294+ItzOnlyAnimal@users.noreply.github.com>2023-05-16 13:22:46 -0400
committerGitHub <noreply@github.com>2023-05-16 19:22:46 +0200
commitfc943b7778bc07ff681c644f8a62879a669af4b2 (patch)
tree697ba02d4f404613ec6f918d9daf7e68c70626d4 /src/plugins
parent3f2bcd2cab1a7a3c32b9cffd5d4fc5df6dde670b (diff)
downloadVencord-fc943b7778bc07ff681c644f8a62879a669af4b2.tar.gz
Vencord-fc943b7778bc07ff681c644f8a62879a669af4b2.tar.bz2
Vencord-fc943b7778bc07ff681c644f8a62879a669af4b2.zip
emoteCloner: allow other characters in sticker names (#1140)
* allow spaces and other characters in cloning sticker names * fix * stickers have a different character limit
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/emoteCloner.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/emoteCloner.tsx b/src/plugins/emoteCloner.tsx
index 521ed86..01065fd 100644
--- a/src/plugins/emoteCloner.tsx
+++ b/src/plugins/emoteCloner.tsx
@@ -194,7 +194,8 @@ function CloneModal({ data }: { data: Sticker | Emoji; }) {
setName(v);
}}
validate={v =>
- (v.length > 1 && v.length < 32 && nameValidator.test(v))
+ (data.t === "Emoji" && v.length > 2 && v.length < 32 && nameValidator.test(v))
+ || (data.t === "Sticker" && v.length > 2 && v.length < 30)
|| "Name must be between 2 and 32 characters and only contain alphanumeric characters"
}
/>