Skip to content
Snippets Groups Projects
Commit a557521f authored by lazarog98's avatar lazarog98
Browse files

#238 fix search being case-sensitive sometimes

parent 2daad16e
No related branches found
No related tags found
1 merge request!27Resolve "Improve searching"
......@@ -43,7 +43,7 @@ func containsSearchTerms ( content : String?, searchText: String) -> Bool
}
else
{
terms.append(longterms[i])
terms.append(longterms[i].lowercased())
}
i+=1
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment