aboutsummaryrefslogtreecommitdiff
path: root/activitypub/actor.go
diff options
context:
space:
mode:
authorFChannel <>2022-06-16 12:39:41 -0700
committerFChannel <>2022-06-19 12:53:29 -0700
commitaebf10de3b631f452600a5b31c1f43c1bbf8bdf2 (patch)
tree6d8855a96a0c3188df015e1b8c54e1db3db00a75 /activitypub/actor.go
parent44a5de2ecef3cba0d4d596f86183e7fd383615c0 (diff)
fixed query to actor/outbox
Diffstat (limited to 'activitypub/actor.go')
-rw-r--r--activitypub/actor.go2
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")