summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2015-09-25 16:46:50 -0700
committerStan Hu <stanhu@gmail.com>2015-09-25 16:46:50 -0700
commit4957415e00207e0eae6184237f19bcd7c7401598 (patch)
treea1dced486b6826cc6c1c6849a81392987b3237cc
parentb623391720e2687ca88c6bf1166ee571d85807fa (diff)
parent4e2bb80fb3ba73b11b3ab81f760434de95e3464e (diff)
downloadgitlab-ce-4957415e00207e0eae6184237f19bcd7c7401598.tar.gz
Merge pull request #9650 from szechyjs/fb-close-comment
FogBugz Import: Include closed comments since they may contain user data
-rw-r--r--lib/gitlab/fogbugz_import/importer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/fogbugz_import/importer.rb b/lib/gitlab/fogbugz_import/importer.rb
index 61e08b23543..496256700b8 100644
--- a/lib/gitlab/fogbugz_import/importer.rb
+++ b/lib/gitlab/fogbugz_import/importer.rb
@@ -154,7 +154,7 @@ module Gitlab
while comment = comments.shift
verb = comment['sVerb']
- next if verb == 'Opened' || verb === 'Closed'
+ next if verb == 'Opened'
content = format_content(comment['s'])
attachments = format_attachments(comment['rgAttachments'])