From 276a93867c21d709af69eab5bfeaded36ad36d51 Mon Sep 17 00:00:00 2001 From: Manuel Munz Date: Tue, 26 Mar 2013 10:30:41 +0000 Subject: applications/luci-olsr: Fix overview page for ipv4 or ipv6 only --- applications/luci-olsr/luasrc/controller/olsr.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'applications/luci-olsr/luasrc/controller') diff --git a/applications/luci-olsr/luasrc/controller/olsr.lua b/applications/luci-olsr/luasrc/controller/olsr.lua index fd616ab630..20bf25ba1c 100644 --- a/applications/luci-olsr/luasrc/controller/olsr.lua +++ b/applications/luci-olsr/luasrc/controller/olsr.lua @@ -108,8 +108,16 @@ function action_json() local jsonreq4 = utl.exec("echo /status | nc 127.0.0.1 9090") local jsonreq6 = utl.exec("echo /status | nc ::1 9090") - http.prepare_content("application/json") + + if #jsonreq4 < 1 then + jsonreq4 = "{}" + end + + if #jsonreq6 < 1 then + jsonreq6 = "{}" + end + http.write("{v4:" .. jsonreq4 .. ", v6:" .. jsonreq6 .. "}") end -- cgit v1.2.3