Fix handling of inverting flags

This commit is contained in:
Gabriel Tofvesson 2024-10-25 19:03:26 +02:00
parent 0b31ec58da
commit a0a5829d84

View File

@ -183,16 +183,17 @@ local PAGES = {
local function composeSortFuncs(...)
local funcs = {...}
local invert = false
local compose = nil
for i=#funcs,1,-1 do
local current = funcs[i]
local invert = false
if type(current) == "boolean" then
invert = current
i = i - 1
current = funcs[i]
goto continue
end
compose = current(invert, compose)
invert = false
::continue::
end
return compose
end