minor fixes

This commit is contained in:
Arya Kiran
2023-04-08 13:14:12 +05:30
parent b9b348afae
commit 6dcd8a894c
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -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
+1
View File
@@ -8,6 +8,7 @@ import (
)
type PrivacyInfo struct {
ProxyEnabled string
IPAddr string
ReqURL string
UserAgent string