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
This commit is contained in:
Georg Pfuetzenreuter 2023-02-12 02:33:30 +01:00
commit 82e8ce4eb2

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 }}