mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-14 10:04:46 +08:00
Fix double-quoting in /.well-known/matrix/support
Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/pull/1931 `|to_json` already adds the surrounding double-quotes for the string, so adding them explicitly means we've got a double-quotes problem.
This commit is contained in:
parent
4a5143fa8d
commit
c9e30708be
@ -2,6 +2,6 @@
|
|||||||
{
|
{
|
||||||
"admins": {{ matrix_homeserver_admin_contacts|to_json }}
|
"admins": {{ matrix_homeserver_admin_contacts|to_json }}
|
||||||
{% if matrix_homeserver_support_url %},
|
{% if matrix_homeserver_support_url %},
|
||||||
"support_page": "{{ matrix_homeserver_support_url|to_json }}"
|
"support_page": {{ matrix_homeserver_support_url|to_json }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user