fix function name

This commit is contained in:
kim 2024-09-16 17:26:48 +01:00
commit aef9767e61

View file

@ -68,7 +68,7 @@ func (p *Processor) ListsGet(ctx context.Context, requestingAccount *gtsmodel.Ac
}
// Get all lists that this follow is an entry within.
lists, err := p.state.DB.GetListsWithFollowID(ctx, follow.ID)
lists, err := p.state.DB.GetListsContainingFollowID(ctx, follow.ID)
if err != nil {
err := gtserror.Newf("error getting lists for follow: %w", err)
return nil, gtserror.NewErrorInternalError(err)