Skip to content
Snippets Groups Projects
Commit b84e4750 authored by AceZephyr's avatar AceZephyr
Browse files

Fixed typo

parent c39518bf
No related branches found
No related tags found
No related merge requests found
......@@ -53,7 +53,7 @@ function writeUser(user, hash) {
async function signup(user, pass) {
if (user.length < 2 || user.length > 20)
return {"code": 400, "error": "Username should be 2-16 characters"};
return {"code": 400, "error": "Username should be 2-20 characters"};
if (pass.length < 8 || pass.length > 32)
return {"code": 400, "error": "Password should be 8-32 characters"};
if (userExists(user))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment