summaryrefslogtreecommitdiff
path: root/internal/api/client/account/accountget.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/api/client/account/accountget.go')
-rw-r--r--internal/api/client/account/accountget.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/client/account/accountget.go b/internal/api/client/account/accountget.go
index a7f9d8c70..8bac1360b 100644
--- a/internal/api/client/account/accountget.go
+++ b/internal/api/client/account/accountget.go
@@ -70,7 +70,7 @@ func (m *Module) AccountGETHandler(c *gin.Context) {
return
}
- acctInfo, err := m.processor.AccountGet(authed, targetAcctID)
+ acctInfo, err := m.processor.AccountGet(c.Request.Context(), authed, targetAcctID)
if err != nil {
c.JSON(http.StatusNotFound, gin.H{"error": "not found"})
return