libs/uci: Optimized workaround
This commit is contained in:
parent
765d5b8540
commit
bdf75b1e03
1 changed files with 7 additions and 5 deletions
|
@ -153,12 +153,14 @@ function Cursor.changes(self, config)
|
|||
if config then
|
||||
return Cursor._changes(self, config)
|
||||
else
|
||||
local changes = {}
|
||||
for k,v in pairs(require "luci.fs".dir(self:get_savedir())) do
|
||||
if v ~= "." and v ~= ".." then
|
||||
util.update(changes, Cursor._changes(self, v))
|
||||
local changes = Cursor._changes(self)
|
||||
util.copcall(function()
|
||||
for k,v in pairs(require "luci.fs".dir(self:get_savedir())) do
|
||||
if v ~= "." and v ~= ".." then
|
||||
util.update(changes, Cursor._changes(self, v))
|
||||
end
|
||||
end
|
||||
end
|
||||
end)
|
||||
return changes
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue