This commit is contained in:
friendica 2015-01-19 14:32:25 -08:00
commit 43d2703e92

View file

@ -13,9 +13,9 @@ function contact_search(term, callback, backend_url, type, extra_channels) {
for(t in contact_search.cache[bt]) {
if(lterm.indexOf(t) >= 0) { // A more broad search has been performed already, so use those results
// Filter old results locally
var matching = contact_search.cache[bt][t].filter(function (x) { return (x.name.toLowerCase().indexOf(lterm) >= 0 || x.nick.toLowerCase().indexOf(lterm) >= 0); });
var matching = contact_search.cache[bt][t].filter(function (x) { return (x.name.toLowerCase().indexOf(lterm) >= 0 || (typeof x.nick !== 'undefined' && x.nick.toLowerCase().indexOf(lterm) >= 0)); }); // Need to check that nick exists because groups don't have one
matching.unshift({taggable:false, text: term, replace: term});
callback(matching);
setTimeout(function() { callback(matching)} , 1); // Use "pseudo-thread" to avoid some problems
return;
}
}