luci-app-mwan3: bugfix 1741/head
authorDirk Brenken <dev@brenken.org>
Mon, 9 Apr 2018 13:50:21 +0000 (15:50 +0200)
committerDirk Brenken <dev@brenken.org>
Mon, 9 Apr 2018 13:50:21 +0000 (15:50 +0200)
* make use of luci.model.uci to fix #1740

Signed-off-by: Dirk Brenken <dev@brenken.org>
applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua

index 3a896d3..a439502 100644 (file)
@@ -171,7 +171,7 @@ metric = mwan_interface:option(DummyValue, "metric", translate("Metric"),
        translate("This displays the metric assigned to this interface in /etc/config/network"))
 metric.rawhtml = true
 function metric.cfgvalue(self, s)
-       local uci = uci.cursor(nil, "/var/state")
+       local uci = require "luci.model.uci".cursor(nil, "/var/state")
        local metric = uci:get("network", arg[1], "metric")
        if metric then
                return metric