From 6709a248d602763c1daaa30d0b813415a4d0829d Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Mon, 8 Apr 2024 07:35:24 +0000 Subject: [PATCH] hotfix(settings): HTTPPROXY_LOG reading fixed --- internal/configuration/settings/httpproxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/configuration/settings/httpproxy.go b/internal/configuration/settings/httpproxy.go index 55fa0469..64d9dcbf 100644 --- a/internal/configuration/settings/httpproxy.go +++ b/internal/configuration/settings/httpproxy.go @@ -166,7 +166,7 @@ func readHTTProxyLog(r *reader.Reader) (enabled *bool, err error) { const currentKey = "HTTPPROXY_LOG" // Retro-compatible keys using different boolean verbs value := r.String("", - reader.RetroKeys("PROXY_LOG", "TINYPROXY_LOG", "HTTPPROXY_LOG"), + reader.RetroKeys("PROXY_LOG", "TINYPROXY_LOG"), reader.IsRetro(currentKey)) switch strings.ToLower(value) { case "":