diff options
Diffstat (limited to 'internal/timeline/prepare.go')
-rw-r--r-- | internal/timeline/prepare.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/timeline/prepare.go b/internal/timeline/prepare.go index cc014037b..8fbcb15a7 100644 --- a/internal/timeline/prepare.go +++ b/internal/timeline/prepare.go @@ -119,7 +119,7 @@ func (t *timeline) prepareXBetweenIDs(ctx context.Context, amount int, behindID } for e, entry := range toPrepare { - prepared, err := t.prepareFunction(ctx, t.accountID, entry.itemID) + prepared, err := t.prepareFunction(ctx, t.timelineID, entry.itemID) if err != nil { if errors.Is(err, db.ErrNoEntries) { // ErrNoEntries means something has been deleted, |