From 5468229d9e26e919372105198a0fd43e031e32f3 Mon Sep 17 00:00:00 2001 From: AliasAlreadyTaken Date: Wed, 6 Apr 2022 23:04:14 +0200 Subject: [PATCH] Bugfix settingtypes: No "" around values --- settingtypes.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/settingtypes.txt b/settingtypes.txt index b6a4a18..182faa3 100644 --- a/settingtypes.txt +++ b/settingtypes.txt @@ -6,22 +6,22 @@ # The address or IP to the matterbridge server # If you run the bridge on the same machine where you run your MT, you can use the default # Defaults to 127.0.0.1 -yl_matterbridge.address (Bridge IP address or URL) string "127.0.0.1" +yl_matterbridge.address (Bridge IP address or URL) string 127.0.0.1 # The port the matterbridge server listens to # You need to set this to the port of the API connection, which you configured in the toml # Defaults to 4242 -yl_matterbridge.port (Bridge port) string "4242" +yl_matterbridge.port (Bridge port) string 4242 # The name of the gateway of the matterbridge server # You need to set this to the gatewayname, which you configured in the toml # Defaults to "default" -yl_matterbridge.gateway (Bridge gateway) string "default" +yl_matterbridge.gateway (Bridge gateway) string default # The token the matterbridge server # If you don't configure this, every wellformed message to the right port will be relayed # Optional -yl_matterbridge.token (Bridge token) string "" +yl_matterbridge.token (Bridge token) string # Whether or not debugging messages are enabled # If set to true, the mod will write every send and receive to the log, among other debug messages.