Fix empty file download (#1506)

release/v1.2
Lauris BH 7 years ago committed by Lunny Xiao
parent fa2a513c62
commit bb14c97d40

@ -19,7 +19,7 @@ import (
func ServeData(ctx *context.Context, name string, reader io.Reader) error {
buf := make([]byte, 1024)
n, _ := reader.Read(buf)
if n > 0 {
if n >= 0 {
buf = buf[:n]
}

Loading…
Cancel
Save