Skip to content

Commit

Permalink
Fix #27
Browse files Browse the repository at this point in the history
  • Loading branch information
Silverfeelin committed Aug 30, 2017
1 parent a6d0790 commit 4010e3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .metadata
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"QuickbarMini",
"StardustLib"
],
"version" : "1.3.2.4",
"version" : "1.3.2.5",
"link" : "steam://url/CommunityFilePage/733665104",
"steamContentId" : "733665104"
}
2 changes: 1 addition & 1 deletion scripts/sip_util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function sip_util.filterByText(list, text)

local results = {}
for _,v in pairs(list) do
if v.shortdescription:lower():find(text) or v.name:lower():find(text) or v.race == text then
if v.shortdescription:lower():find(text, 1, true) or v.name:lower():find(text, 1, true) or v.race == text then
table.insert(results, v)
end
end
Expand Down

0 comments on commit 4010e3a

Please sign in to comment.