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