remove unused line

This commit is contained in:
tim-kos 2013-03-18 17:05:55 +01:00
parent 9e5237683d
commit 43bd55001c
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ func setFileRangeHeader(w http.ResponseWriter, fileId string) {
received := ""
for i, chunk := range chunks {
received += fmt.Sprintf("%d-%d", chunk.Start, chunk.End)
if i + 1 < len(chunks) {
if i+1 < len(chunks) {
received += ","
}
}