From f4574961c7cd800d525043585c78ffa51782c33d Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Wed, 12 Jun 2019 09:17:35 +0300 Subject: [PATCH] Prevent double-quotes around default room version Using `|to_json` on a string is expected to correctly wrap it in quotes (e.g. `"4"`). Wrapping it explicitly in double-quotes results in undesirable double-quoting (`""4""`). --- roles/matrix-synapse/templates/synapse/homeserver.yaml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/matrix-synapse/templates/synapse/homeserver.yaml.j2 b/roles/matrix-synapse/templates/synapse/homeserver.yaml.j2 index 869f313f..43ae99b6 100644 --- a/roles/matrix-synapse/templates/synapse/homeserver.yaml.j2 +++ b/roles/matrix-synapse/templates/synapse/homeserver.yaml.j2 @@ -82,7 +82,7 @@ use_presence: {{ matrix_synapse_use_presence|to_json }} # For example, for room version 1, default_room_version should be set # to "1". # -default_room_version: "{{ matrix_synapse_default_room_version|to_json }}" +default_room_version: {{ matrix_synapse_default_room_version|to_json }} # The GC threshold parameters to pass to `gc.set_threshold`, if defined #