diff options
author | Jared Szechy <jared.szechy@gmail.com> | 2015-09-21 10:49:44 -0400 |
---|---|---|
committer | Jared Szechy <jared.szechy@gmail.com> | 2015-09-21 10:49:44 -0400 |
commit | 4e2bb80fb3ba73b11b3ab81f760434de95e3464e (patch) | |
tree | 6f87d7835770a085ff102aab3064fe7a780af6db /lib | |
parent | abaa65efc1f912ffef05ccaf1e92dc009f828278 (diff) | |
download | gitlab-ce-4e2bb80fb3ba73b11b3ab81f760434de95e3464e.tar.gz |
FogBugz Import: Closed comments may contain user data
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/fogbugz_import/importer.rb | 2 |
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']) |