mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2024-11-22 15:16:46 +01:00
Fixed issue #2154
For emergency access invitations we need to check if invites are allowed, not if sign-ups are allowed.
This commit is contained in:
parent
920371929b
commit
1fa178d1d3
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ fn send_invite(data: JsonUpcase<EmergencyAccessInviteData>, headers: Headers, co
|
|||
|
||||
let grantee_user = match User::find_by_mail(&email, &conn) {
|
||||
None => {
|
||||
if !CONFIG.signups_allowed() {
|
||||
if !CONFIG.invitations_allowed() {
|
||||
err!(format!("Grantee user does not exist: {}", email))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue