summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Elastic.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Elastic.pm')
-rw-r--r--Bugzilla/Elastic.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Elastic.pm b/Bugzilla/Elastic.pm
index 3a3829e3b..a01d1be42 100644
--- a/Bugzilla/Elastic.pm
+++ b/Bugzilla/Elastic.pm
@@ -50,7 +50,7 @@ sub suggest_users {
sub _suggest_users_fallback {
my ($self, $text) = @_;
- my $users = Bugzilla::User::match($text, 25, 0);
+ my $users = Bugzilla::User::match($text, 25, 1);
return [ map { { real_name => $_->name, name => $_->login } } @$users];
}