浏览代码

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 年前
committed by GitHub
父节点
当前提交
94c9780f7a
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      roles/matrix-synapse/defaults/main.yml

+ 1
- 1
roles/matrix-synapse/defaults/main.yml 查看文件

@@ -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"


正在加载...
取消
保存