diff options
author | Michael Muré <batolettre@gmail.com> | 2020-11-08 19:18:44 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2021-02-14 12:17:47 +0100 |
commit | ab57d74a312f325b9d889752aa92c00c395de20f (patch) | |
tree | b54b204f7f7ccb64181051b58cc01ddeed42e1be /bridge/github/import.go | |
parent | 7163b2283b4542a4d4abfe9a71963f122322bde7 (diff) | |
download | git-bug-ab57d74a312f325b9d889752aa92c00c395de20f.tar.gz |
deal with the previous changes
Diffstat (limited to 'bridge/github/import.go')
-rw-r--r-- | bridge/github/import.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bridge/github/import.go b/bridge/github/import.go index e8a4d3cb..af62746f 100644 --- a/bridge/github/import.go +++ b/bridge/github/import.go @@ -551,6 +551,7 @@ func (gi *githubImporter) ensurePerson(repo *cache.RepoCache, actor *actor) (*ca email, string(actor.Login), string(actor.AvatarUrl), + nil, map[string]string{ metaKeyGithubLogin: string(actor.Login), }, @@ -598,6 +599,7 @@ func (gi *githubImporter) getGhost(repo *cache.RepoCache) (*cache.IdentityCache, "", string(q.User.Login), string(q.User.AvatarUrl), + nil, map[string]string{ metaKeyGithubLogin: string(q.User.Login), }, |