Allow setting basic auth with empty username
This commit is contained in:
parent
f664fef1f6
commit
027ff4e2dd
|
@ -150,7 +150,7 @@ func (h *HTTP) gatherURL(
|
|||
}
|
||||
}
|
||||
|
||||
if h.Username != "" {
|
||||
if h.Username != "" || h.Password != "" {
|
||||
request.SetBasicAuth(h.Username, h.Password)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue