luci-app-mwan3: bugfix
* make use of luci.model.uci to fix #1740 Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
parent
1104b837cd
commit
f7f5395f1c
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue