fix fwd response headers

This commit is contained in:
Kevin Pham
2023-11-28 00:06:41 -06:00
parent 9a8d4ac261
commit 214790f905
5 changed files with 23 additions and 15 deletions

View File

@@ -354,7 +354,8 @@ func (chain *ProxyChain) _reset() {
// NewProxyChain initializes a new ProxyChain
func NewProxyChain() *ProxyChain {
chain := new(ProxyChain)
chain.Client = http.DefaultClient
//chain.Client = http.DefaultClient
chain.Client = &http.Client{}
return chain
}