Merge pull request #34566 from nextcloud/backport/34558/stable25

[stable25] fix reading updater token for web updater
This commit is contained in:
Vincent Petry 2022-10-13 09:21:26 +02:00 committed by GitHub
commit 1fb7567294
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -406,7 +406,7 @@ export default {
const hiddenField = document.createElement('input')
hiddenField.setAttribute('type', 'hidden')
hiddenField.setAttribute('name', 'updater-secret-input')
hiddenField.setAttribute('value', data.token)
hiddenField.setAttribute('value', data)
form.appendChild(hiddenField)

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long