mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
fix: Fix M_NOT_FOUND for users with no origin set
This commit is contained in:
@@ -58,7 +58,14 @@ impl Service {
|
|||||||
return Err!("Cannot issue a password reset token for the server user");
|
return Err!("Cannot issue a password reset token for the server user");
|
||||||
}
|
}
|
||||||
|
|
||||||
if self.services.users.origin(&user_id).await? != "password" {
|
if self
|
||||||
|
.services
|
||||||
|
.users
|
||||||
|
.origin(&user_id)
|
||||||
|
.await
|
||||||
|
.unwrap_or_else(|_| "password".to_owned())
|
||||||
|
!= "password"
|
||||||
|
{
|
||||||
return Err!("Cannot issue a password reset token for non-internal user {user_id}");
|
return Err!("Cannot issue a password reset token for non-internal user {user_id}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user