summaryrefslogtreecommitdiff
path: root/internal/processing/timeline.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/processing/timeline.go')
-rw-r--r--internal/processing/timeline.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/timeline.go b/internal/processing/timeline.go
index a8f42d64c..8f6b1d26b 100644
--- a/internal/processing/timeline.go
+++ b/internal/processing/timeline.go
@@ -201,7 +201,7 @@ func (p *processor) indexAndIngest(statuses []*gtsmodel.Status, timelineAccount
continue
}
if timelineable {
- if err := p.timelineManager.Ingest(s, timelineAccount.ID); err != nil {
+ if _, err := p.timelineManager.Ingest(s, timelineAccount.ID); err != nil {
l.Error(fmt.Errorf("initTimelineFor: error ingesting status %s: %s", s.ID, err))
continue
}