1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2025-06-27 16:35:59 +00:00

fix: reject /register requests when there is no token and the type is appservice

This commit is contained in:
Matthias Ahouansou 2024-03-30 12:40:58 +00:00
parent 9176474513
commit 8d70f69e62
No known key found for this signature in database
2 changed files with 11 additions and 3 deletions

View file

@ -118,8 +118,8 @@ pub async fn login_route(body: Ruma<login::v3::Request>) -> Result<login::v3::Re
}) => {
if !body.from_appservice {
return Err(Error::BadRequest(
ErrorKind::Forbidden,
"Forbidden login type.",
ErrorKind::MissingToken,
"Missing appservice token.",
));
};
if let Some(UserIdentifier::UserIdOrLocalpart(user_id)) = identifier {