Increased password max length to 128 (#8909)

This commit is contained in:
Matteo Biscosi 2025-01-22 11:16:14 +01:00
parent 86e63076fd
commit a4e86caee2
3 changed files with 4 additions and 4 deletions

View file

@ -520,7 +520,7 @@ end
function getPasswordInputPattern()
-- maximum len must be kept in sync with MAX_PASSWORD_LEN
return [[^[\w\$\\!\/\(\)= \?\^\*@_\-\u0000-\u0019\u0021-\u00ff]{5,31}$]]
return [[^[\w\$\\!\/\(\)= \?\^\*@_\-\u0000-\u0019\u0021-\u00ff]{5,128}$]]
end
-- ##############################################