diff --git a/app/soapbox/features/emoji/index.ts b/app/soapbox/features/emoji/index.ts index 67cc11ca6..57ed0741d 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) => {