Merge pull request #870 from pafcu/autocomplete_fix

Fix autocomplete with groups
This commit is contained in:
RedMatrix 2015-01-20 08:48:26 +11:00
commit abddaccb5f

View File

@ -13,7 +13,7 @@ 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});
setTimeout(function() { callback(matching)} , 1); // Use "pseudo-thread" to avoid some problems
return;