Skip to content

Commit

Permalink
Fix double-quoting in /.well-known/matrix/support
Browse files Browse the repository at this point in the history
Related to #1931

`|to_json` already adds the surrounding double-quotes for the string, so
adding them explicitly means we've got a double-quotes problem.
  • Loading branch information
spantaleev committed Jul 18, 2022
1 parent 4a5143f commit c9e3070
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
{
"admins": {{ matrix_homeserver_admin_contacts|to_json }}
{% if matrix_homeserver_support_url %},
"support_page": "{{ matrix_homeserver_support_url|to_json }}"
"support_page": {{ matrix_homeserver_support_url|to_json }}
{% endif %}
}

0 comments on commit c9e3070

Please sign in to comment.