Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/routing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPau Escrich <p4u@dabax.net>2016-02-16 21:23:07 +0300
committerPau Escrich <p4u@dabax.net>2016-02-16 21:23:07 +0300
commit93fdb120de99369efa99ad99a1b8ff255c541eaa (patch)
treef4a6d14e074293a46127738fa1fb57d7deb716f0 /luci-app-bmx6
parent258c3c57786787f00517118bd11ed64a91f47e36 (diff)
luci-app-bmx6: return if json problem detected
Signed-off-by: Bob Ham <rah@settrans.net>
Diffstat (limited to 'luci-app-bmx6')
-rw-r--r--luci-app-bmx6/files/usr/lib/lua/luci/model/cbi/bmx6/main.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/luci-app-bmx6/files/usr/lib/lua/luci/model/cbi/bmx6/main.lua b/luci-app-bmx6/files/usr/lib/lua/luci/model/cbi/bmx6/main.lua
index d4e0745..8ff3520 100644
--- a/luci-app-bmx6/files/usr/lib/lua/luci/model/cbi/bmx6/main.lua
+++ b/luci-app-bmx6/files/usr/lib/lua/luci/model/cbi/bmx6/main.lua
@@ -27,7 +27,8 @@ m = Map("bmx6", "bmx6")
-- Getting json and Checking if bmx6-json is avaiable
local options = bmx6json.get("options")
if options == nil or options.OPTIONS == nil then
- m.message = "bmx6-json plugin is not running or some mistake in luci-bmx6 configuration, check /etc/config/luci-bmx6"
+ m.message = "bmx6-json plugin is not running or some mistake in luci-bmx6 configuration, check /etc/config/luci-bmx6"
+ return m
else
options = options.OPTIONS
end