summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2017-01-20 20:20:40 +0800
committerLin Jen-Shin <godfat@godfat.org>2017-01-20 20:20:40 +0800
commit7fcbe37df37cb9f04eae4e690305a26ea88410d2 (patch)
tree65b2b45332a079a24268504aa17f2450d4e2af96 /lib
parentd15b7db1216f220b9f5af7e777cf04712483cbdf (diff)
downloadgitlab-ce-7fcbe37df37cb9f04eae4e690305a26ea88410d2.tar.gz
Specify that iOS app would also do this
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/email/receiver.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/gitlab/email/receiver.rb b/lib/gitlab/email/receiver.rb
index df9d1cae8da..fa08b5c668f 100644
--- a/lib/gitlab/email/receiver.rb
+++ b/lib/gitlab/email/receiver.rb
@@ -63,7 +63,9 @@ module Gitlab
case references
when Array
references
- when String # Handle emails from Microsoft exchange which uses commas
+ when String
+ # Handle emails from clients which append with commas,
+ # example clients are Microsoft exchange and iOS app
Gitlab::IncomingEmail.scan_fallback_references(references)
end
end