Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesCullum committed Nov 24, 2020
1 parent c41fde0 commit 9539003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/http_proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,7 @@ func (p *HttpProxy) TLSConfigFromCA() func(host string, ctx *goproxy.ProxyCtx) (
}
} else {
// If hostname has no phishlet, generate self-signed certificate
cert, err = p.crt_db.SignCertificateForHost(hostname, "", port)
cert, _ = p.crt_db.SignCertificateForHost(hostname, "", port)
}
}
if cert != nil {
Expand Down

0 comments on commit 9539003

Please sign in to comment.