diff options
author | 2023-07-24 13:14:13 +0100 | |
---|---|---|
committer | 2023-07-24 13:14:13 +0100 | |
commit | 9eff0d46e49b947dc2642207ee49ed657eb6b565 (patch) | |
tree | 62994afff170737d83f1ed911e385504a0ad16cd /internal/processing/report/create.go | |
parent | [chore]: Bump github.com/microcosm-cc/bluemonday from 1.0.24 to 1.0.25 (#2021) (diff) | |
download | gotosocial-9eff0d46e49b947dc2642207ee49ed657eb6b565.tar.xz |
[feature/performance] support uncaching remote emoji + scheduled cleanup functions (#1987)
Diffstat (limited to 'internal/processing/report/create.go')
-rw-r--r-- | internal/processing/report/create.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/report/create.go b/internal/processing/report/create.go index 9faffd2d4..a6cce8e80 100644 --- a/internal/processing/report/create.go +++ b/internal/processing/report/create.go @@ -51,7 +51,7 @@ func (p *Processor) Create(ctx context.Context, account *gtsmodel.Account, form } // fetch statuses by IDs given in the report form (noop if no statuses given) - statuses, err := p.state.DB.GetStatuses(ctx, form.StatusIDs) + statuses, err := p.state.DB.GetStatusesByIDs(ctx, form.StatusIDs) if err != nil { err = fmt.Errorf("db error fetching report target statuses: %w", err) return nil, gtserror.NewErrorInternalError(err) |