From 2c8a8f6cd52d6dad51571c40d52c4de954935b40 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Thu, 6 Jan 2022 17:47:06 +0000 Subject: [PATCH] fix(settings): HTTP proxy default address --- 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 abeb8c79..2588b81c 100644 --- a/internal/configuration/settings/httpproxy.go +++ b/internal/configuration/settings/httpproxy.go @@ -85,7 +85,7 @@ func (h *HTTPProxy) overrideWith(other HTTPProxy) { func (h *HTTPProxy) setDefaults() { h.User = helpers.DefaultStringPtr(h.User, "") h.Password = helpers.DefaultStringPtr(h.Password, "") - h.ListeningAddress = helpers.DefaultString(h.ListeningAddress, "") + h.ListeningAddress = helpers.DefaultString(h.ListeningAddress, ":8888") h.Enabled = helpers.DefaultBool(h.Enabled, false) h.Stealth = helpers.DefaultBool(h.Stealth, false) h.Log = helpers.DefaultBool(h.Log, false)