fediverse handles are lowercase
This commit is contained in:
parent
3a7ff38c0d
commit
d6336ee87e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue