From 11cff5374ba8287a6671a68c8eb4f228714c9e98 Mon Sep 17 00:00:00 2001 From: "Daniel F. Dickinson" Date: Wed, 16 Jan 2019 19:13:01 -0500 Subject: [PATCH] luci-app-radicale2: Use http when not SSL The test or whether we were using SSL often returned true even when using HTTP only, therefore fix the test. Signed-off-by: Daniel F. Dickinson --- applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm b/applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm index 2f449d7b0..1bcf388bd 100644 --- a/applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm +++ b/applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm @@ -1,7 +1,7 @@ <% local uci = require "luci.model.uci".cursor() local http_port = uci:get("radicale2", "server", "host") -local usessl = uci:get("radicale2", "server", "ssl") +local usessl = uci:get_bool("radicale2", "server", "ssl") if type(http_port) == "table" then http_port = http_port[1] end -- 2.25.1