From ba5a464ca5d3fcbd171c174a4f07c3326ecb01df Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Fri, 12 May 2023 08:16:41 +0000 Subject: [chore] Prefer JSON errors in API endpoints (#1766) * Default to JSON over HTML for error handling * Change the default error display for web endpoints to html --- internal/web/about.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/web/about.go') diff --git a/internal/web/about.go b/internal/web/about.go index 86c0accda..ebb1ceefa 100644 --- a/internal/web/about.go +++ b/internal/web/about.go @@ -33,7 +33,7 @@ const ( func (m *Module) aboutGETHandler(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 } -- cgit v1.2.3