FIX: not showing any search results when scoped on user

This commit is contained in:
Sam 2014-10-08 13:03:18 +11:00
parent b47c1defe0
commit 7ef2f48660

View file

@ -59,7 +59,10 @@ export default function searchForTerm(term, opts) {
}
});
var noResults = !!((results.topics.length === 0) && (results.posts.length === 0) && (results.categories.length === 0));
var noResults = !!(results.topics.length === 0 &&
results.posts.length === 0 &&
results.users.length === 0 &&
results.categories.length === 0);
return noResults ? null : Em.Object.create(results);
});