diff options
Diffstat (limited to 'bridge')
-rw-r--r-- | bridge/github/export.go | 2 | ||||
-rw-r--r-- | bridge/gitlab/export.go | 2 | ||||
-rw-r--r-- | bridge/jira/export.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/bridge/github/export.go b/bridge/github/export.go index b939d878..57b52ee0 100644 --- a/bridge/github/export.go +++ b/bridge/github/export.go @@ -173,7 +173,7 @@ func (ge *githubExporter) ExportAll(ctx context.Context, repo *cache.RepoCache, // ignore issues created before since date // TODO: compare the Lamport time instead of using the unix time - if snapshot.CreatedAt.Before(since) { + if snapshot.CreateTime.Before(since) { out <- core.NewExportNothing(b.Id(), "bug created before the since date") continue } diff --git a/bridge/gitlab/export.go b/bridge/gitlab/export.go index 918e6b5e..f32ec0e3 100644 --- a/bridge/gitlab/export.go +++ b/bridge/gitlab/export.go @@ -131,7 +131,7 @@ func (ge *gitlabExporter) ExportAll(ctx context.Context, repo *cache.RepoCache, // ignore issues created before since date // TODO: compare the Lamport time instead of using the unix time - if snapshot.CreatedAt.Before(since) { + if snapshot.CreateTime.Before(since) { out <- core.NewExportNothing(b.Id(), "bug created before the since date") continue } diff --git a/bridge/jira/export.go b/bridge/jira/export.go index 37066263..e6167966 100644 --- a/bridge/jira/export.go +++ b/bridge/jira/export.go @@ -165,7 +165,7 @@ func (je *jiraExporter) ExportAll(ctx context.Context, repo *cache.RepoCache, si // ignore issues whose last modification date is before the query date // TODO: compare the Lamport time instead of using the unix time - if snapshot.CreatedAt.Before(since) { + if snapshot.CreateTime.Before(since) { out <- core.NewExportNothing(b.Id(), "bug created before the since date") continue } |