Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2019-08-18 20:47:32 +0300
committerJulius Härtl <jus@bitgrid.net>2019-08-19 10:32:09 +0300
commit6094c9dc395d366b40c0e3524b6b2c97aed53fda (patch)
tree3a48c1690e45fb0b48de1101a6047143e18c0b68 /core/src
parente6c225a3f3e39bdb0bb7f1d42c9595f1a3a403c0 (diff)
Send new password instead of empty string
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'core/src')
-rw-r--r--core/src/components/login/UpdatePassword.vue2
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') {