From 95ba3261fd06030665cd480253e30c503dceca6a Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Tue, 29 Dec 2020 18:16:29 +0000 Subject: [PATCH] Code maintenance: lint bug fix for armv7 --- internal/settings/httpproxy.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/settings/httpproxy.go b/internal/settings/httpproxy.go index de7be358..306b266a 100644 --- a/internal/settings/httpproxy.go +++ b/internal/settings/httpproxy.go @@ -8,11 +8,11 @@ import ( ) // HTTPProxy contains settings to configure the HTTP proxy. -type HTTPProxy struct { //nolint:maligned - Enabled bool - Port uint16 +type HTTPProxy struct { User string Password string + Port uint16 + Enabled bool Stealth bool Log bool }