Sfoglia il codice sorgente

Fix matrix_synapse_encryption_enabled_by_default_for_room_type

The value of `off` was taken to be a boolean, but it shouldn't be.

Synapse expects a string (currently one of: `all`, `invite`, `off`).
pull/1606/head
Slavi Pantaleev 4 anni fa
committed by GitHub
parent
commit
94c9780f7a
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      roles/matrix-synapse/defaults/main.yml

+ 1
- 1
roles/matrix-synapse/defaults/main.yml Vedi File

@@ -575,7 +575,7 @@ matrix_synapse_spam_checker: []

matrix_synapse_modules: []

matrix_synapse_encryption_enabled_by_default_for_room_type: false
matrix_synapse_encryption_enabled_by_default_for_room_type: "off"

matrix_synapse_trusted_key_servers:
- server_name: "matrix.org"


Caricamento…
Annulla
Salva