Compare commits

...

2 Commits

Author SHA1 Message Date
82e8ce4eb2 Merge pull request 'matterbridge: quote numbers' (#18) from matterbridge-booleans into production
All checks were successful
ci/lysergic/push/pipeline Pipeline was successful
Reviewed-on: #18
2023-02-12 02:33:30 +01:00
b061265885
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>
2023-02-12 02:30:56 +01:00

View File

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