diff options
author | 2024-02-09 15:24:49 +0100 | |
---|---|---|
committer | 2024-02-09 14:24:49 +0000 | |
commit | e890169e6f151f668580398685c2dbf3c4b780ff (patch) | |
tree | 3d3be4348eee2c71288c93772cfcaa128aabd71b /internal/processing/status/get.go | |
parent | [chore] Move `DoOnce` func wrapper to util (#2613) (diff) | |
download | gotosocial-e890169e6f151f668580398685c2dbf3c4b780ff.tar.xz |
use pointer for freshness window (#2614)
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 |