Merge pull request #16781 from nextcloud/bug/fix-password-reset
Send new password instead of empty string
This commit is contained in:
commit
b73df01945
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -22,6 +22,7 @@
|
|||
<template>
|
||||
<form method="post"
|
||||
name="login"
|
||||
:action="OC.generateUrl('login')"
|
||||
@submit="submit">
|
||||
<fieldset>
|
||||
<div v-if="apacheAuthFailed"
|
||||
|
|
|
@ -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') {
|
||||
|
|
Loading…
Reference in New Issue