summaryrefslogtreecommitdiff
path: root/lib/gitlab/user_extractor.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/user_extractor.rb')
-rw-r--r--lib/gitlab/user_extractor.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/gitlab/user_extractor.rb b/lib/gitlab/user_extractor.rb
index b41d085ee77..f0557f6ad68 100644
--- a/lib/gitlab/user_extractor.rb
+++ b/lib/gitlab/user_extractor.rb
@@ -11,7 +11,9 @@ module Gitlab
USERNAME_REGEXP = User.reference_pattern
def initialize(text)
- @text = text
+ # EE passes an Array to `text` in a few places, so we want to support both
+ # here.
+ @text = Array(text).join(' ')
end
def users