summaryrefslogtreecommitdiff
path: root/internal/processing/account/export.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/processing/account/export.go')
-rw-r--r--internal/processing/account/export.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/account/export.go b/internal/processing/account/export.go
index 9954ea225..68cc17b6d 100644
--- a/internal/processing/account/export.go
+++ b/internal/processing/account/export.go
@@ -98,7 +98,7 @@ func (p *Processor) ExportLists(
ctx context.Context,
requester *gtsmodel.Account,
) ([][]string, gtserror.WithCode) {
- lists, err := p.state.DB.GetListsForAccountID(ctx, requester.ID)
+ lists, err := p.state.DB.GetListsByAccountID(ctx, requester.ID)
if err != nil && !errors.Is(err, db.ErrNoEntries) {
err = gtserror.Newf("db error getting lists: %w", err)
return nil, gtserror.NewErrorInternalError(err)