aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Bialkowski <josh.bialkowski@gmail.com>2020-02-17 13:13:25 -0800
committerJosh Bialkowski <josh.bialkowski@gmail.com>2020-02-17 13:13:25 -0800
commitd349137ea5dffa0ae01fbf1a0fba75e11778aabb (patch)
tree1ba6ff5f8c73776c5b250ad17090b8637d75b3c7
parentbbd31adbfff9d3c57eed7be68250b56a4386d02b (diff)
downloadgit-bug-d349137ea5dffa0ae01fbf1a0fba75e11778aabb.tar.gz
fix usage of newIdentityRaw
-rw-r--r--bridge/jira/import.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/jira/import.go b/bridge/jira/import.go
index bfe83f4d..61870dd1 100644
--- a/bridge/jira/import.go
+++ b/bridge/jira/import.go
@@ -192,7 +192,7 @@ func (ji *jiraImporter) ensurePerson(repo *cache.RepoCache, user User) (*cache.I
i, err = repo.NewIdentityRaw(
user.DisplayName,
user.EmailAddress,
- user.Key,
+ "",
map[string]string{
metaKeyJiraUser: string(user.Key),
},