From ad81301ef13d18cdfdb4f8e8a7512ca147e42ec9 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 18:02:09 +0200 Subject: [PATCH] Use proper state for filter --- itemcontroller.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 1d8e4ed..e11584f 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -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