summaryrefslogtreecommitdiff
path: root/internal/handlers/handler_extended_configuration.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/handlers/handler_extended_configuration.go')
-rw-r--r--internal/handlers/handler_extended_configuration.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/handlers/handler_extended_configuration.go b/internal/handlers/handler_extended_configuration.go
index 052798670..7f03598a0 100644
--- a/internal/handlers/handler_extended_configuration.go
+++ b/internal/handlers/handler_extended_configuration.go
@@ -26,5 +26,5 @@ func ExtendedConfigurationGet(ctx *middlewares.AutheliaCtx) {
ctx.Logger.Tracef("Second factor enabled: %v", body.SecondFactorEnabled)
ctx.Logger.Tracef("Available methods are %s", body.AvailableMethods)
- ctx.SetJSONBody(body)
+ ctx.SetJSONBody(body) //nolint:errcheck // TODO: Legacy code, consider refactoring time permitting.
}