diff --git a/bridgeconfig/meta.tpl.yaml b/bridgeconfig/meta.tpl.yaml index f0a6e4f..27a5b7a 100644 --- a/bridgeconfig/meta.tpl.yaml +++ b/bridgeconfig/meta.tpl.yaml @@ -93,7 +93,7 @@ bridge: # Localpart template of MXIDs for FB/IG users. username_template: {{ .BridgeName }}_{{ "{{.}}" }} # Displayname template for FB/IG users. This is also used as the room name in DMs if private_chat_portal_meta is enabled. - displayname_template: {{ `"{{or .ContactName .ProfileName .PhoneNumber "Unknown user" }}"` }} + displayname_template: {{ `'{{or .ContactName .ProfileName .PhoneNumber "Unknown user" }}'` }} # Whether to explicitly set the avatar and room name for private chat portal rooms. # If set to `default`, this will be enabled in encrypted rooms and disabled in unencrypted rooms. # If set to `always`, all DM rooms will have explicit names and avatars set. diff --git a/bridgeconfig/signal.tpl.yaml b/bridgeconfig/signal.tpl.yaml index 652848c..1d7f2aa 100644 --- a/bridgeconfig/signal.tpl.yaml +++ b/bridgeconfig/signal.tpl.yaml @@ -92,7 +92,7 @@ bridge: # Localpart template of MXIDs for Signal users. username_template: {{ .BridgeName }}_{{ "{{.}}" }} # Displayname template for Signal users. This is also used as the room name in DMs if private_chat_portal_meta is enabled. - displayname_template: {{ `"{{or .ContactName .ProfileName .PhoneNumber "Unknown user" }}"` }} + displayname_template: {{ `'{{or .ContactName .ProfileName .PhoneNumber "Unknown user" }}'` }} # Whether to explicitly set the avatar and room name for private chat portal rooms. # If set to `default`, this will be enabled in encrypted rooms and disabled in unencrypted rooms. # If set to `always`, all DM rooms will have explicit names and avatars set.