From ac38702732510ff6bad9c3837acdbf22fa8e0b50 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Thu, 7 Sep 2023 18:17:04 +0200 Subject: [PATCH] trying to fix "Unknown key 'services' found in config panel" --- config_panel.toml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/config_panel.toml b/config_panel.toml index f57cd51..fd8de27 100644 --- a/config_panel.toml +++ b/config_panel.toml @@ -3,13 +3,14 @@ version = "1.0" [main] name = "Adguard configuration" - [main.options] - name = "Enable some features" +services = ["__APP__"] - [main.options.dns_over_https] - ask = "Enable DNS-over-HTTPS" - type = "boolean" - yes = "true" - no = "false" - bind = "allow_unencrypted_doh:__FINALPATH__/AdGuardHome.yaml" - services = [ '__APP__' ] \ No newline at end of file +[main.options] +name = "Enable some features" + +[main.options.dns_over_https] +ask = "Enable DNS-over-HTTPS" +bind = "allow_unencrypted_doh:__FINALPATH__/AdGuardHome.yaml" +no = "false" +type = "boolean" +yes = "true"