aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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());