From 5c1d8da2b7c71b7de3f52a6c290c1ff6461f66f9 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Sun, 13 Aug 2023 10:39:21 +0200 Subject: [PATCH] Fix config panel booleans --- config_panel.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config_panel.toml b/config_panel.toml index ace58a7..31324af 100644 --- a/config_panel.toml +++ b/config_panel.toml @@ -9,14 +9,14 @@ name = "Conduit configuration" [main.registration.registration] ask = "Should registration be enabled?" type = "boolean" - yes = true - no = false + yes = "true" + no = "false" bind = "allow_registration:/var/www/__APP__/conduit.toml" [main.registration.disable_federation] ask = "Disable Federation" type = "boolean" - yes = true - no = false + yes = "true" + no = "false" help = "Do not communicate with other homeservers of the Matrix Federation." bind = "allow_federation:/var/www/__APP__/conduit.toml"