Allow setting basic auth with empty username

This commit is contained in:
Daniel Nelson 2018-02-15 18:22:49 -08:00
parent f664fef1f6
commit 027ff4e2dd
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ func (h *HTTP) gatherURL(
}
}
if h.Username != "" {
if h.Username != "" || h.Password != "" {
request.SetBasicAuth(h.Username, h.Password)
}