From d2ed6747e593e12c317d5191573d5d3460d72660 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Fri, 3 Jan 2020 13:52:03 +0100 Subject: gitlab: fix edit not being pushed with baseUrl fix #284 --- bridge/gitlab/export.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridge/gitlab/export.go b/bridge/gitlab/export.go index d42ef1cd..2ba149a2 100644 --- a/bridge/gitlab/export.go +++ b/bridge/gitlab/export.go @@ -159,7 +159,7 @@ func (ge *gitlabExporter) exportBug(ctx context.Context, b *cache.BugCache, sinc gitlabID, ok := snapshot.GetCreateMetadata(metaKeyGitlabId) if ok { gitlabBaseUrl, ok := snapshot.GetCreateMetadata(metaKeyGitlabBaseUrl) - if ok && gitlabBaseUrl != ge.conf[gitlabBaseUrl] { + if ok && gitlabBaseUrl != ge.conf[keyGitlabBaseUrl] { out <- core.NewExportNothing(b.Id(), "skipping issue imported from another Gitlab instance") return } -- cgit