Bugfix settingtypes: No "" around values

This commit is contained in:
AliasAlreadyTaken 2022-04-06 23:04:14 +02:00
parent 9e0f1f29bc
commit 5468229d9e
1 changed files with 4 additions and 4 deletions

View File

@ -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.