aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorStefan Parviainen <saparvia@caterva.eu>2015-01-19 20:42:57 +0100
committerStefan Parviainen <saparvia@caterva.eu>2015-01-19 20:42:57 +0100
commit9cd522a7907c5cff72ac76e02a2de02dd989c9be (patch)
tree1ef1f69389e4c3a504d334510f870073a7a68ffe /view
parentf55a312c17c639f270edc36245af375cf4bd6058 (diff)
downloadvolse-hubzilla-9cd522a7907c5cff72ac76e02a2de02dd989c9be.tar.gz
volse-hubzilla-9cd522a7907c5cff72ac76e02a2de02dd989c9be.tar.bz2
volse-hubzilla-9cd522a7907c5cff72ac76e02a2de02dd989c9be.zip
Fix autocomplete with groups
Diffstat (limited to 'view')
-rw-r--r--view/js/autocomplete.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js
index f695a5dbf..50ba99279 100644
--- a/view/js/autocomplete.js
+++ b/view/js/autocomplete.js
@@ -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;