mirror of
https://github.com/nextcloud/server.git
synced 2026-02-19 02:38:40 -05:00
Merge pull request #16781 from nextcloud/bug/fix-password-reset
Send new password instead of empty string
This commit is contained in:
commit
b73df01945
4 changed files with 4 additions and 3 deletions
2
core/js/dist/login.js
vendored
2
core/js/dist/login.js
vendored
File diff suppressed because one or more lines are too long
2
core/js/dist/login.js.map
vendored
2
core/js/dist/login.js.map
vendored
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 a new issue