Skip to content

Commit

Permalink
Merge pull request #191 from trampi/fix-defaults
Browse files Browse the repository at this point in the history
fixed missing default value quotes for env.get calls in ejabberd.yml.tpl
  • Loading branch information
rroemhild authored Jan 8, 2019
2 parents bae2e61 + c356efb commit 40f2b5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conf/ejabberd.yml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ language: "en"

modules:
mod_adhoc: {}
{% if env.get('EJABBERD_MOD_ADMIN_EXTRA', true) == "true" %}
{% if env.get('EJABBERD_MOD_ADMIN_EXTRA', "true") == "true" %}
mod_admin_extra: {}
{% endif %}
mod_announce: # recommends mod_adhoc
Expand Down Expand Up @@ -426,7 +426,7 @@ modules:
resend_on_timeout: if_offline
mod_time: {}
mod_vcard: {}
{% if env.get('EJABBERD_MOD_VERSION', true) == "true" %}
{% if env.get('EJABBERD_MOD_VERSION', "true") == "true" %}
mod_version: {}
{% endif %}

Expand Down

0 comments on commit 40f2b5b

Please sign in to comment.