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/bitbucket
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/bitbucket')
-rw-r--r--lib/bitbucket/representation/issue.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bitbucket/representation/issue.rb b/lib/bitbucket/representation/issue.rb
index 054064395c3..44bcbc250b3 100644
--- a/lib/bitbucket/representation/issue.rb
+++ b/lib/bitbucket/representation/issue.rb
@@ -12,7 +12,7 @@ module Bitbucket
end
def author
- raw.fetch('reporter', {}).fetch('username', nil)
+ raw.dig('reporter', 'username')
end
def description