Browse Source

fix commata not being set when secure_backup_required false

pull/679/head
Tobias Küchel 5 years ago
parent
commit
6599204334
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      roles/matrix-base/templates/static-files/well-known/matrix-client.j2

+ 3
- 3
roles/matrix-base/templates/static-files/well-known/matrix-client.j2 View File

@@ -29,11 +29,11 @@
,
"io.element.e2ee": {
{% if not matrix_client_element_e2ee_default %}
"default": false
"default": false,
{% else %}
"default": true
"default": true,
{% endif %}
{% if matrix_client_element_e2ee_backup_required %},
{% if matrix_client_element_e2ee_backup_required %}
"secure_backup_required": true
{% else %}
"secure_backup_required": false


Loading…
Cancel
Save