small fix
This commit is contained in:
@ -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) => {
|
||||
|
||||
Reference in New Issue
Block a user