aboutsummaryrefslogtreecommitdiffstats
path: root/bridge
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-08-08 18:59:37 +0200
committerMichael Muré <batolettre@gmail.com>2019-08-08 19:06:13 +0200
commita0dfc202117e31e01d2d6ec701a41292df35d35d (patch)
tree68bca888326edc8f039daba7d1e869fd581d3e60 /bridge
parent612a29b031c0f2914d8b283b99bf187f20182fa9 (diff)
downloadgit-bug-a0dfc202117e31e01d2d6ec701a41292df35d35d.tar.gz
github: fix bad refactor
Diffstat (limited to 'bridge')
-rw-r--r--bridge/github/export.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/github/export.go b/bridge/github/export.go
index 21f75cb4..0d2b1e61 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")
}