Skip to content

Commit

Permalink
Merge pull request #44633 from nextcloud/backport/44604/stable28
Browse files Browse the repository at this point in the history
[stable28] fix(encryption): Clicking default module in UI sets bogus value
  • Loading branch information
artonge authored Apr 3, 2024
2 parents 927fd65 + e7002b4 commit e8e6d28
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 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
Loading

0 comments on commit e8e6d28

Please sign in to comment.