Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJared Szechy <jared.szechy@gmail.com>2015-09-21 17:49:44 +0300
committerJared Szechy <jared.szechy@gmail.com>2015-09-21 17:49:44 +0300
commit4e2bb80fb3ba73b11b3ab81f760434de95e3464e (patch)
tree6f87d7835770a085ff102aab3064fe7a780af6db /lib/gitlab/fogbugz_import
parentabaa65efc1f912ffef05ccaf1e92dc009f828278 (diff)
FogBugz Import: Closed comments may contain user data
Diffstat (limited to 'lib/gitlab/fogbugz_import')
-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'])