We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7150e6e commit caec102Copy full SHA for caec102
lib/routelib/routelib.lua
@@ -405,7 +405,6 @@ local function configure_route_wrap(r, ctx)
405
local route = r.a
406
-- wrap the child data into a new table
407
local children = route.child_wrap
408
- route["child_wrap"] = nil
409
-- recursion case: another child needs to first transform into children
410
if (getmetatable(children) == RouteConf) then
411
dsay("running possible recursive child_wrap child")
@@ -433,6 +432,7 @@ local function configure_route_wrap(r, ctx)
433
432
434
-- reuse the same route config, but once for each child.
435
rn.a.child = v
+ rn.a.child_wrap = nil
436
t[k] = configure_route(rn, ctx)
437
end
438
0 commit comments