From a0dfc202117e31e01d2d6ec701a41292df35d35d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Thu, 8 Aug 2019 18:59:37 +0200 Subject: [PATCH] github: fix bad refactor --- bridge/github/export.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridge/github/export.go b/bridge/github/export.go index 21f75cb4179a714a1c31702b99cea9a486a54037..0d2b1e618d04f16433da0ba4b734fe79982006ee 100644 --- a/bridge/github/export.go +++ b/bridge/github/export.go @@ -290,7 +290,7 @@ func (ge *githubExporter) exportBug(b *cache.BugCache, since time.Time, out chan } else { // case comment edition operation: we need to edit the Github comment - commentID, ok := ge.cachedOperationIDs[opr.ID()] + commentID, ok := ge.cachedOperationIDs[opr.Target] if !ok { panic("unexpected error: comment id not found") }