summaryrefslogtreecommitdiff
path: root/internal/api/client/account/followers.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/api/client/account/followers.go')
-rw-r--r--internal/api/client/account/followers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/client/account/followers.go b/internal/api/client/account/followers.go
index 7e93544b8..4f30e9939 100644
--- a/internal/api/client/account/followers.go
+++ b/internal/api/client/account/followers.go
@@ -74,7 +74,7 @@ func (m *Module) AccountFollowersGETHandler(c *gin.Context) {
return
}
- followers, errWithCode := m.processor.AccountFollowersGet(authed, targetAcctID)
+ followers, errWithCode := m.processor.AccountFollowersGet(c.Request.Context(), authed, targetAcctID)
if errWithCode != nil {
c.JSON(errWithCode.Code(), gin.H{"error": errWithCode.Safe()})
return