From e7e60e0514d85aa0aca91d2d0157eb6aeefd2920 Mon Sep 17 00:00:00 2001 From: rosenjcb Date: Mon, 10 Jul 2023 04:27:38 -0700 Subject: [PATCH] Updating `login.rs` with generic `incorrect_login` response. (#3549) --- crates/api/src/local_user/login.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/api/src/local_user/login.rs b/crates/api/src/local_user/login.rs index 9e211c9c4..3bf177666 100644 --- a/crates/api/src/local_user/login.rs +++ b/crates/api/src/local_user/login.rs @@ -23,7 +23,7 @@ impl Perform for Login { let username_or_email = data.username_or_email.clone(); let local_user_view = LocalUserView::find_by_email_or_name(context.pool(), &username_or_email) .await - .map_err(|e| LemmyError::from_error_message(e, "couldnt_find_that_username_or_email"))?; + .map_err(|e| LemmyError::from_error_message(e, "incorrect_login"))?; // Verify the password let valid: bool = verify( @@ -32,7 +32,7 @@ impl Perform for Login { ) .unwrap_or(false); if !valid { - return Err(LemmyError::from_message("password_incorrect")); + return Err(LemmyError::from_message("incorrect_login")); } check_user_valid( local_user_view.person.banned,