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