From aef9767e614c221f522bf6ab6642640b8b503f40 Mon Sep 17 00:00:00 2001 From: kim Date: Mon, 16 Sep 2024 17:26:48 +0100 Subject: [PATCH] fix function name --- internal/processing/account/lists.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/processing/account/lists.go b/internal/processing/account/lists.go index 4f13d3b0d..04cf4ca73 100644 --- a/internal/processing/account/lists.go +++ b/internal/processing/account/lists.go @@ -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)