milo fixes

This commit is contained in:
kepler155c
2018-11-19 19:36:08 -05:00
parent 4df1b30098
commit d6b0fef5d4

View File

@@ -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)