diff options
-rw-r--r-- | libs/uci/luasrc/model/uci/bind.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libs/uci/luasrc/model/uci/bind.lua b/libs/uci/luasrc/model/uci/bind.lua index 89ad3284c..6f9060d22 100644 --- a/libs/uci/luasrc/model/uci/bind.lua +++ b/libs/uci/luasrc/model/uci/bind.lua @@ -126,7 +126,11 @@ end function bsection.set(self, k, v, c) local stat if type(c) == "string" then - stat = self:uciop("set", c, k, v) + if type(v) == "table" and #v == 0 then + stat = self:uciop("delete", c, k) + else + stat = self:uciop("set", c, k, v) + end else self:uciop("foreach", self.stype, function(s) |