From 64133ee5ba4b03e2f7f2f2161b1d551a97bd0d80 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sat, 6 Oct 2018 11:55:16 +0200 Subject: github: deal with the deleted user case where github return a null actor --- bridge/github/github.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bridge/github/github.go') 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 } -- cgit