From 4a734121425b243d0143157da31c51c95dbec489 Mon Sep 17 00:00:00 2001 From: ewwwwwwww Date: Wed, 6 Jul 2022 19:32:29 -0700 Subject: [PATCH] small fix --- app/soapbox/features/emoji/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/soapbox/features/emoji/index.ts b/app/soapbox/features/emoji/index.ts index 67cc11ca60..57ed0741d1 100644 --- a/app/soapbox/features/emoji/index.ts +++ b/app/soapbox/features/emoji/index.ts @@ -60,7 +60,8 @@ const isAlphaNumeric = (c: string) => { const validEmojiChar = (c: string) => { return isAlphaNumeric(c) || c === '_' - || c === '-'; + || c === '-' + || c === '.'; }; const convertCustom = (shortname: string, filename: string) => {