diff options
Diffstat (limited to 'internal/processing/followrequest.go')
-rw-r--r-- | internal/processing/followrequest.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/processing/followrequest.go b/internal/processing/followrequest.go index 5eb9fd6ad..867725023 100644 --- a/internal/processing/followrequest.go +++ b/internal/processing/followrequest.go @@ -27,9 +27,9 @@ import ( ) func (p *processor) FollowRequestsGet(auth *oauth.Auth) ([]apimodel.Account, gtserror.WithCode) { - frs := []gtsmodel.FollowRequest{} - if err := p.db.GetFollowRequestsForAccountID(auth.Account.ID, &frs); err != nil { - if _, ok := err.(db.ErrNoEntries); !ok { + frs, err := p.db.GetAccountFollowRequests(auth.Account.ID) + if err != nil { + if err != db.ErrNoEntries { return nil, gtserror.NewErrorInternalError(err) } } |