This commit is contained in:
Quentin McGaw
2020-08-30 14:48:57 +00:00
parent aac5274eab
commit 7c102c0028
11 changed files with 262 additions and 18 deletions

View File

@@ -21,9 +21,9 @@ func (t *TinyProxy) String() string {
if !t.Enabled {
return "TinyProxy settings: disabled"
}
auth := "disabled"
auth := disabled
if t.User != "" {
auth = "enabled"
auth = enabled
}
settingsList := []string{
fmt.Sprintf("Port: %d", t.Port),