Skip to content

Commit

Permalink
fix(encryption): Clicking default module in UI sets bogus value
Browse files Browse the repository at this point in the history
Fixes #44532 
Likely fixes #43123 

Signed-off-by: Josh <[email protected]>
  • Loading branch information
joshtrichards authored Apr 1, 2024
1 parent 536aa8a commit 337a165
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apps/settings/src/components/Encryption.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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') {
Expand Down

0 comments on commit 337a165

Please sign in to comment.