diff options
author | Valery Sizov <valery@gitlab.com> | 2016-12-13 21:28:04 +0200 |
---|---|---|
committer | Valery Sizov <valery@gitlab.com> | 2016-12-13 21:28:07 +0200 |
commit | e39f024029b46322c1bf24409fd5ce7bfcef2da5 (patch) | |
tree | 52664136981b70c409f2cfb8e43235596821eb19 /lib/bitbucket/representation/issue.rb | |
parent | 0057ed1e69bc203d82fd3e8dfa6db7ea6a9b1de7 (diff) | |
download | gitlab-ce-e39f024029b46322c1bf24409fd5ce7bfcef2da5.tar.gz |
BB importer: Adding created_by only when used is not found[ci skip]
Diffstat (limited to 'lib/bitbucket/representation/issue.rb')
-rw-r--r-- | lib/bitbucket/representation/issue.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bitbucket/representation/issue.rb b/lib/bitbucket/representation/issue.rb index 6c8e9a4c244..90adfa3331a 100644 --- a/lib/bitbucket/representation/issue.rb +++ b/lib/bitbucket/representation/issue.rb @@ -12,7 +12,7 @@ module Bitbucket end def author - raw.dig('reporter', 'username') || 'Anonymous' + user_representation(raw.fetch('reporter', {})) end def description |