From 726b1818d095b81ba3d4d262c37e355cd7048d43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=91cze=20Bence?= Date: Mon, 8 May 2023 18:48:12 +0200 Subject: [PATCH] fix error message for password reset request --- src/Controller/LoginController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/LoginController.php b/src/Controller/LoginController.php index 05d61fd..3558fca 100644 --- a/src/Controller/LoginController.php +++ b/src/Controller/LoginController.php @@ -196,7 +196,7 @@ class LoginController if ($user === null) { return new JsonContent([ 'error' => [ - 'errorText' => 'No user found with the given email address / username.' + 'errorText' => 'No user found with the given email address.' ] ]); }