forked from TrueCloudLab/rclone
Fix Range header option
This commit is contained in:
parent
0dbf1230bc
commit
b76cd4abd2
1 changed files with 2 additions and 2 deletions
|
@ -31,12 +31,12 @@ func (o *RangeOption) Header() (key string, value string) {
|
||||||
key = "Range"
|
key = "Range"
|
||||||
value = "bytes="
|
value = "bytes="
|
||||||
if o.Start >= 0 {
|
if o.Start >= 0 {
|
||||||
value += strconv.FormatInt(o.Start, 64)
|
value += strconv.FormatInt(o.Start, 10)
|
||||||
|
|
||||||
}
|
}
|
||||||
value += "-"
|
value += "-"
|
||||||
if o.End >= 0 {
|
if o.End >= 0 {
|
||||||
value += strconv.FormatInt(o.End, 64)
|
value += strconv.FormatInt(o.End, 10)
|
||||||
}
|
}
|
||||||
return key, value
|
return key, value
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue