small fix
This commit is contained in:
parent
16f06cd554
commit
4a73412142
1 changed files with 2 additions and 1 deletions
|
@ -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) => {
|
||||
|
|
Loading…
Reference in a new issue