diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-10-12 22:25:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 22:25:50 +0200 |
commit | 4c64a60823af82827ed5fe27911b0cde2f0c958e (patch) | |
tree | 0e7403eff329bf36aa23a7fb401ad4ec465dc6ea /apps | |
parent | eeeade06ebfa9f0f94d776ad4000c440c94fe744 (diff) | |
parent | 52c1dbfb0001624529114a388b639a674b4dbd60 (diff) | |
download | nextcloud-server-4c64a60823af82827ed5fe27911b0cde2f0c958e.tar.gz nextcloud-server-4c64a60823af82827ed5fe27911b0cde2f0c958e.zip |
Merge pull request #34558 from nextcloud/fix/34201/broken-web-updater
fix reading updater token for web updater
Diffstat (limited to 'apps')
-rw-r--r-- | apps/updatenotification/src/components/UpdateNotification.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/updatenotification/src/components/UpdateNotification.vue b/apps/updatenotification/src/components/UpdateNotification.vue index 95a3927a7b7..d17ff69cbd1 100644 --- a/apps/updatenotification/src/components/UpdateNotification.vue +++ b/apps/updatenotification/src/components/UpdateNotification.vue @@ -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) |