Commit d6336ee8 authored by Grant's avatar Grant
Browse files

fediverse handles are lowercase

parent 3a7ff38c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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