[change-password] Fix password change js

Not sure what rl.hash.set() is supposed to do, but it is undefined, which
causes an exeption, which in turn provides an error message even when
the password was successfully changed.
This commit is contained in:
David Härdeman 2021-08-23 13:02:07 +02:00
parent 1d65ec5345
commit 6c5106dbd2

View file

@ -117,7 +117,6 @@
this.newPassword(''); this.newPassword('');
this.newPassword2(''); this.newPassword2('');
this.passwordUpdateSuccess(true); this.passwordUpdateSuccess(true);
rl.hash.set();
rl.settings.set('AuthAccountHash', data.Result); rl.settings.set('AuthAccountHash', data.Result);
} }
} }