diff options
Diffstat (limited to 'internal/api/client/reports/reportget.go')
-rw-r--r-- | internal/api/client/reports/reportget.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/api/client/reports/reportget.go b/internal/api/client/reports/reportget.go index 8b08da048..0c478e045 100644 --- a/internal/api/client/reports/reportget.go +++ b/internal/api/client/reports/reportget.go @@ -85,7 +85,7 @@ func (m *Module) ReportGETHandler(c *gin.Context) { return } - report, errWithCode := m.processor.ReportGet(c.Request.Context(), authed, targetReportID) + report, errWithCode := m.processor.Report().Get(c.Request.Context(), authed.Account, targetReportID) if errWithCode != nil { apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1) return |