diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-08-18 19:47:32 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-08-19 09:32:09 +0200 |
commit | 6094c9dc395d366b40c0e3524b6b2c97aed53fda (patch) | |
tree | 3a48c1690e45fb0b48de1101a6047143e18c0b68 /core | |
parent | e6c225a3f3e39bdb0bb7f1d42c9595f1a3a403c0 (diff) | |
download | nextcloud-server-6094c9dc395d366b40c0e3524b6b2c97aed53fda.tar.gz nextcloud-server-6094c9dc395d366b40c0e3524b6b2c97aed53fda.zip |
Send new password instead of empty string
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'core')
-rw-r--r-- | core/src/components/login/UpdatePassword.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/components/login/UpdatePassword.vue b/core/src/components/login/UpdatePassword.vue index 5ee01772df7..3b5ac32133d 100644 --- a/core/src/components/login/UpdatePassword.vue +++ b/core/src/components/login/UpdatePassword.vue @@ -103,7 +103,7 @@ try { const { data } = await Axios.post(this.resetPasswordTarget, { - password: this.user, + password: this.password, proceed: this.proceed }) if (data && data.status === 'success') { |