fix: lint
This commit is contained in:
parent
c3e0e6405a
commit
0b7762590f
1 changed files with 3 additions and 5 deletions
|
@ -36,11 +36,9 @@ func DownloadFileWithHeaders(url string, headers http.Header) (buf *bytes.Buffer
|
|||
return nil, err
|
||||
}
|
||||
|
||||
if headers != nil {
|
||||
for key, h := range headers {
|
||||
for _, hh := range h {
|
||||
req.Header.Add(key, hh)
|
||||
}
|
||||
for key, h := range headers {
|
||||
for _, hh := range h {
|
||||
req.Header.Add(key, hh)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue