From d6b0fef5d4075cb577f511c81fe6e61148f74b32 Mon Sep 17 00:00:00 2001 From: kepler155c Date: Mon, 19 Nov 2018 19:36:08 -0500 Subject: [PATCH] milo fixes --- milo/core/machines.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/milo/core/machines.lua b/milo/core/machines.lua index 3a8effe..014bdf0 100644 --- a/milo/core/machines.lua +++ b/milo/core/machines.lua @@ -149,7 +149,7 @@ function networkPage:applyFilter() if #self.filter.value > 0 then local filter = self.filter.value:lower() - Util.filterInplace(t, function(v) + t = Util.filter(t, function(v) return v.displayName and string.find(string.lower(v.displayName), filter, 1, true) or string.find(string.lower(v.name), filter, 1, true)