summaryrefslogtreecommitdiffstats
path: root/core/Controller
diff options
context:
space:
mode:
authorJosh Richards <josh.t.richards@gmail.com>2023-04-04 10:03:15 -0400
committerGitHub <noreply@github.com>2023-04-04 10:03:15 -0400
commit9899b1247803432f87224a01022bafca5366a1b1 (patch)
treec05254c3e35fae3e292d3cca62f3ae7f35673c5b /core/Controller
parent203b9131ec895cafbb10e9c2aacd6b2c45e6b9f4 (diff)
downloadnextcloud-server-9899b1247803432f87224a01022bafca5366a1b1.tar.gz
nextcloud-server-9899b1247803432f87224a01022bafca5366a1b1.zip
Trim user earlier
Signed-off-by: Josh Richards <josh.t.richards@gmail.com>
Diffstat (limited to 'core/Controller')
-rw-r--r--core/Controller/LostController.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/Controller/LostController.php b/core/Controller/LostController.php
index 36b8dca6ddb..51ab8d85a6e 100644
--- a/core/Controller/LostController.php
+++ b/core/Controller/LostController.php
@@ -200,6 +200,8 @@ class LostController extends Controller {
return new JSONResponse($this->error($this->l10n->t('Password reset is disabled')));
}
+ $user = trim($user);
+
\OCP\Util::emitHook(
'\OCA\Files_Sharing\API\Server2Server',
'preLoginNameUsedAsUserName',
@@ -208,7 +210,7 @@ class LostController extends Controller {
// FIXME: use HTTP error codes
try {
- $this->sendEmail(trim($user));
+ $this->sendEmail($user);
} catch (ResetPasswordException $e) {
// Ignore the error since we do not want to leak this info
$this->logger->warning('Could not send password reset email: ' . $e->getMessage());