diff options
Diffstat (limited to 'internal/web/base.go')
-rw-r--r-- | internal/web/base.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/web/base.go b/internal/web/base.go index 7e8bcf48f..5bc3c536a 100644 --- a/internal/web/base.go +++ b/internal/web/base.go @@ -36,7 +36,7 @@ func (m *Module) baseHandler(c *gin.Context) { instance, err := m.processor.InstanceGetV1(c.Request.Context()) if err != nil { - apiutil.ErrorHandler(c, gtserror.NewErrorInternalError(err), m.processor.InstanceGetV1) + apiutil.WebErrorHandler(c, gtserror.NewErrorInternalError(err), m.processor.InstanceGetV1) return } |