small fix

This commit is contained in:
ewwwwwwww 2022-07-06 19:32:29 -07:00
parent 16f06cd554
commit 4a73412142

View file

@ -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) => {