diff options
author | Michael Muré <batolettre@gmail.com> | 2018-10-06 11:55:16 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-10-06 11:55:16 +0200 |
commit | 64133ee5ba4b03e2f7f2f2161b1d551a97bd0d80 (patch) | |
tree | 9459d5c83f38441985c003a1a306783c47ddfaf8 /bridge/github/github.go | |
parent | 558e149b2524864beff3912f44fdb887edeb7ac5 (diff) | |
download | git-bug-64133ee5ba4b03e2f7f2f2161b1d551a97bd0d80.tar.gz |
github: deal with the deleted user case where github return a null actor
Diffstat (limited to 'bridge/github/github.go')
-rw-r--r-- | bridge/github/github.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridge/github/github.go b/bridge/github/github.go index b70a89db..b3f8d763 100644 --- a/bridge/github/github.go +++ b/bridge/github/github.go @@ -19,11 +19,11 @@ func (*Github) Target() string { return "github" } -func (*Github) Importer() core.Importer { +func (*Github) NewImporter() core.Importer { return &githubImporter{} } -func (*Github) Exporter() core.Exporter { +func (*Github) NewExporter() core.Exporter { return nil } |