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:
authorBart Libert <bart.libert@gmail.com>2018-04-05 14:44:18 +0300
committerBart Libert <bart.libert@gmail.com>2018-05-24 14:28:58 +0300
commit4bfd54f3d2e303d751d49834879867f3c62156e9 (patch)
tree14bec3c9ce3fefc68a6a0664da91470880b3cbed /lib/gitlab/import_formatter.rb
parent942fe5fe79f512b4c801fc887a1240a963b827d0 (diff)
Import bitbucket issues that are reported by an anonymous user
For these kind of issues, the "reporter" field is present but zero. In such a case, "fetch" will not return the default value, but it will return nil. Hence, importing fails, because the "username" field of nil is referenced Fixes issue #44381
Diffstat (limited to 'lib/gitlab/import_formatter.rb')
-rw-r--r--lib/gitlab/import_formatter.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/gitlab/import_formatter.rb b/lib/gitlab/import_formatter.rb
index 3e54456e936..4e611e7f16c 100644
--- a/lib/gitlab/import_formatter.rb
+++ b/lib/gitlab/import_formatter.rb
@@ -9,6 +9,7 @@ module Gitlab
end
def author_line(author)
+ author ||= "Anonymous"
"*Created by: #{author}*\n\n"
end
end