summaryrefslogtreecommitdiff
path: root/internal/api/client/account/follow.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/api/client/account/follow.go')
-rw-r--r--internal/api/client/account/follow.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/client/account/follow.go b/internal/api/client/account/follow.go
index 985a5f821..8f3f7ad0a 100644
--- a/internal/api/client/account/follow.go
+++ b/internal/api/client/account/follow.go
@@ -99,7 +99,7 @@ func (m *Module) AccountFollowPOSTHandler(c *gin.Context) {
}
form.ID = targetAcctID
- relationship, errWithCode := m.processor.AccountFollowCreate(authed, form)
+ relationship, errWithCode := m.processor.AccountFollowCreate(c.Request.Context(), authed, form)
if errWithCode != nil {
c.JSON(errWithCode.Code(), gin.H{"error": errWithCode.Safe()})
return