diff options
Diffstat (limited to 'apps/settings')
-rw-r--r-- | apps/settings/src/components/Encryption.vue | 5 |
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') { |