summaryrefslogtreecommitdiff
path: root/internal/api/client/followrequest/accept.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/api/client/followrequest/accept.go')
-rw-r--r--internal/api/client/followrequest/accept.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/client/followrequest/accept.go b/internal/api/client/followrequest/accept.go
index bb2910c8f..3dba7673f 100644
--- a/internal/api/client/followrequest/accept.go
+++ b/internal/api/client/followrequest/accept.go
@@ -48,7 +48,7 @@ func (m *Module) FollowRequestAcceptPOSTHandler(c *gin.Context) {
return
}
- r, errWithCode := m.processor.FollowRequestAccept(authed, originAccountID)
+ r, errWithCode := m.processor.FollowRequestAccept(c.Request.Context(), authed, originAccountID)
if errWithCode != nil {
l.Debug(errWithCode.Error())
c.JSON(errWithCode.Code(), gin.H{"error": errWithCode.Safe()})