Errores recuperar contraseña solucionado

This commit is contained in:
Juan Ferrer Toribio 2017-04-24 15:10:14 +02:00
parent 51ee8a3755
commit 6eda62a5dc
2 changed files with 2 additions and 2 deletions

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
hedera-web (1.393-deb8) stable; urgency=low hedera-web (1.394-deb8) stable; urgency=low
* Initial Release. * Initial Release.

View File

@ -114,7 +114,7 @@ module.exports = new Class
if (!user) if (!user)
Htk.Toast.showError (_('Please write your user name')); Htk.Toast.showError (_('Please write your user name'));
else else
this._conn.send ('core/recover-password', {'user': user}, this._conn.send ('core/recover-password', {recoverUser: user},
this._onPasswordRecovered.bind (this)); this._onPasswordRecovered.bind (this));
} }