mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:38:58 +00:00
Fix login with email panic when email is not exist (#18942)
Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
parent
5f9c18b2b3
commit
cb90eda213
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ func UserSignIn(username, password string) (*user_model.User, *auth.Source, erro
|
||||||
}
|
}
|
||||||
if !has {
|
if !has {
|
||||||
return nil, nil, user_model.ErrEmailAddressNotExist{
|
return nil, nil, user_model.ErrEmailAddressNotExist{
|
||||||
Email: user.Email,
|
Email: username,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
user = &user_model.User{ID: emailAddress.UID}
|
user = &user_model.User{ID: emailAddress.UID}
|
||||||
|
|
Loading…
Reference in a new issue