fix BUG 587
parent
d53231f58a
commit
a424704496
|
@ -11,7 +11,7 @@ function containsDigitsLettersSpecialCharacters(s) {
|
|||
resultL = /[a-z]/i.test(s);
|
||||
|
||||
// Special charater test
|
||||
'+-*/,.:;/\[]<>$%&()!?^~'.split('').forEach((x) => {
|
||||
'+-*/,.:;/\[]<>$%&()!?^~@'.split('').forEach((x) => {
|
||||
if (s.includes(x))
|
||||
resultS = 1;
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue