mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
minor
This commit is contained in:
parent
b6f99c4d83
commit
58dd880322
|
@ -331,7 +331,9 @@ func ReadUrlAsStream(fileUrl string, cipherKey []byte, isContentGzipped bool, is
|
||||||
|
|
||||||
for {
|
for {
|
||||||
m, err = reader.Read(buf)
|
m, err = reader.Read(buf)
|
||||||
fn(buf[:m])
|
if m > 0 {
|
||||||
|
fn(buf[:m])
|
||||||
|
}
|
||||||
if err == io.EOF {
|
if err == io.EOF {
|
||||||
return false, nil
|
return false, nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue