matterbridge: quote numbers
All checks were successful
ci/lysergic/push/pipeline Pipeline was successful

Needed to make the TOML configuration format happy.

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
This commit is contained in:
Georg Pfuetzenreuter 2023-02-12 02:30:56 +01:00
parent 8fbfd38ec3
commit b061265885
Signed by: Georg
GPG Key ID: 1ED2F138E7E6FF57

View File

@ -14,7 +14,7 @@
{%- for account, config in accounts.items() %}
[{{ account }}]
{%- for option, value in config.items() %}
{%- if value is string %}
{%- if value is string or value is number %}
{%- set value = '"' ~ value ~ '"' %}
{%- endif %}
{{ option }}={{ value }}