diff options
Diffstat (limited to 'activitypub')
-rw-r--r-- | activitypub/actor.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub/actor.go b/activitypub/actor.go index be51460..9996abd 100644 --- a/activitypub/actor.go +++ b/activitypub/actor.go @@ -594,7 +594,7 @@ func (actor Actor) GetFollowersResp(ctx *fiber.Ctx) error { following.AtContext.Context = "https://www.w3.org/ns/activitystreams" following.Type = "Collection" - following.TotalItems, err = actor.GetFollowingTotal() + following.TotalItems, err = actor.GetFollowersTotal() if err != nil { return util.MakeError(err, "GetFollowersResp") |