diff options
Diffstat (limited to 'internal/processing/status/get.go')
-rw-r--r-- | internal/processing/status/get.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/processing/status/get.go b/internal/processing/status/get.go index 7c275acbd..475ab0128 100644 --- a/internal/processing/status/get.go +++ b/internal/processing/status/get.go @@ -32,7 +32,7 @@ func (p *Processor) Get(ctx context.Context, requestingAccount *gtsmodel.Account targetStatus, errWithCode := p.c.GetVisibleTargetStatus(ctx, requestingAccount, targetStatusID, - false, // refresh + nil, // default freshness ) if errWithCode != nil { return nil, errWithCode @@ -46,7 +46,7 @@ func (p *Processor) WebGet(ctx context.Context, targetStatusID string) (*apimode targetStatus, errWithCode := p.c.GetVisibleTargetStatus(ctx, nil, // requester targetStatusID, - false, // refresh + nil, // default freshness ) if errWithCode != nil { return nil, errWithCode @@ -69,7 +69,7 @@ func (p *Processor) contextGet( targetStatus, errWithCode := p.c.GetVisibleTargetStatus(ctx, requestingAccount, targetStatusID, - false, // refresh + nil, // default freshness ) if errWithCode != nil { return nil, errWithCode |