diff options
Diffstat (limited to 'internal/api/client/accounts/accountget.go')
-rw-r--r-- | internal/api/client/accounts/accountget.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/client/accounts/accountget.go b/internal/api/client/accounts/accountget.go index ca6b9c661..9fcbf7a4b 100644 --- a/internal/api/client/accounts/accountget.go +++ b/internal/api/client/accounts/accountget.go @@ -85,7 +85,7 @@ func (m *Module) AccountGETHandler(c *gin.Context) { return } - acctInfo, errWithCode := m.processor.AccountGet(c.Request.Context(), authed, targetAcctID) + acctInfo, errWithCode := m.processor.Account().Get(c.Request.Context(), authed.Account, targetAcctID) if errWithCode != nil { apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1) return |