aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJosh <josh.t.richards@gmail.com>2024-04-01 18:43:22 -0400
committernextcloud-command <nextcloud-command@users.noreply.github.com>2024-04-03 09:33:02 +0000
commite7002b4738b020dd438caf5998285acfd70afb6b (patch)
tree1aae83cce83b5352c103f4f12d92407e4c41773f /apps
parentbe17be68f0f82c891565b41db73f2465f90bcecd (diff)
downloadnextcloud-server-e7002b4738b020dd438caf5998285acfd70afb6b.tar.gz
nextcloud-server-e7002b4738b020dd438caf5998285acfd70afb6b.zip
fix(encryption): Clicking default module in UI sets bogus value
Fixes #44532 Likely fixes #43123 Signed-off-by: Josh <josh.t.richards@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/src/components/Encryption.vue5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/settings/src/components/Encryption.vue b/apps/settings/src/components/Encryption.vue
index b6a37b41c8b..0953d22661f 100644
--- a/apps/settings/src/components/Encryption.vue
+++ b/apps/settings/src/components/Encryption.vue
@@ -137,10 +137,9 @@ export default {
key,
})
- const stringValue = value ? 'yes' : 'no'
try {
const { data } = await axios.post(url, {
- value: stringValue,
+ value: value,
})
this.handleResponse({
status: data.ocs?.meta?.status,
@@ -157,7 +156,7 @@ export default {
},
async enableEncryption() {
this.encryptionEnabled = true
- await this.update('encryption_enabled', true)
+ await this.update('encryption_enabled', 'yes')
},
async handleResponse({ status, errorMessage, error }) {
if (status !== 'ok') {