diff --git a/cmd/gothub/setup.go b/cmd/gothub/setup.go index 3b83e54..b755de9 100644 --- a/cmd/gothub/setup.go +++ b/cmd/gothub/setup.go @@ -136,9 +136,9 @@ func setup() { var proxying string fmt.Scanln(&proxying) if proxying == "y" { - vars.Proxying = true + vars.Proxying = "true" } else { - vars.Proxying = false + vars.Proxying = "false" } // save to .env file diff --git a/pages/about.go b/pages/about.go index 7b89e51..dcc8efa 100644 --- a/pages/about.go +++ b/pages/about.go @@ -8,6 +8,7 @@ import ( ) type PrivacyInfo struct { + ProxyEnabled string IPAddr string ReqURL string UserAgent string