fix BUG 587

Bug587-yingzhizhao
yzzob 2025-06-24 18:16:47 +08:00
parent d53231f58a
commit a424704496
1 changed files with 1 additions and 1 deletions

View File

@ -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;
});