summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2022-10-12 22:25:50 +0200
committerGitHub <noreply@github.com>2022-10-12 22:25:50 +0200
commit4c64a60823af82827ed5fe27911b0cde2f0c958e (patch)
tree0e7403eff329bf36aa23a7fb401ad4ec465dc6ea /apps
parenteeeade06ebfa9f0f94d776ad4000c440c94fe744 (diff)
parent52c1dbfb0001624529114a388b639a674b4dbd60 (diff)
downloadnextcloud-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.vue2
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)