1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-09-12 01:19:10 +02:00

make username login case insensitive

This commit is contained in:
reti4 2022-03-01 21:03:55 +00:00
parent 6788225cac
commit 9f059ad4c3

View file

@ -57,7 +57,7 @@ pub async fn login_route(
return Err(Error::BadRequest(ErrorKind::Forbidden, "Bad login type."));
};
let user_id =
UserId::parse_with_server_name(username.to_owned(), db.globals.server_name())
UserId::parse_with_server_name(username.to_lowercase().to_owned(), db.globals.server_name())
.map_err(|_| {
Error::BadRequest(ErrorKind::InvalidUsername, "Username is invalid.")
})?;