Use proper state for filter

This commit is contained in:
Gabriel Tofvesson 2024-10-12 18:02:09 +02:00
parent 5f8cf98b8a
commit ad81301ef1

View File

@ -571,7 +571,7 @@ local PAGES = {
else
totalCount = totalCount + 1
local name = stack:getSimpleName()
return matchFilter(state.filter, name) or (name:find(":") ~= nil and matchFilter(state.filter, stack:getName()))
return matchFilter(pageState.filter, name) or (name:find(":") ~= nil and matchFilter(pageState.filter, stack:getName()))
end
end))
totalCount = emptyCount + totalCount