fediverse handles are lowercase

This commit is contained in:
Grant 2024-07-14 17:24:01 -06:00
parent 3a7ff38c0d
commit d6336ee87e
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ app.post("/login/step/username", async (req, res) => {
error: "username is not a string",
});
}
username = req.body.username;
username = req.body.username.toLowerCase();
req.session.login.username = username;
// this is the prompt for the user