From 6c5106dbd266c64272e27d25a9f73c34b06072fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20H=C3=A4rdeman?= Date: Mon, 23 Aug 2021 13:02:07 +0200 Subject: [PATCH] [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. --- plugins/change-password/js/ChangePasswordUserSettings.js | 1 - 1 file changed, 1 deletion(-) diff --git a/plugins/change-password/js/ChangePasswordUserSettings.js b/plugins/change-password/js/ChangePasswordUserSettings.js index 738bd2741..15a15e751 100644 --- a/plugins/change-password/js/ChangePasswordUserSettings.js +++ b/plugins/change-password/js/ChangePasswordUserSettings.js @@ -117,7 +117,6 @@ this.newPassword(''); this.newPassword2(''); this.passwordUpdateSuccess(true); - rl.hash.set(); rl.settings.set('AuthAccountHash', data.Result); } }