You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should Read the following in the 'err == io.EOF' check because the part.Read(buffer) may have hit the EOF whilst reading the 'remaining' part of the file without filling the buffer so there's no subsequent parts but we still need to break.
if err == io.EOF {
if cBytes >= 1 && cBytes <= 100000 {
dst.Write(buffer[0:cBytes])
}
break
}
The text was updated successfully, but these errors were encountered:
Should Read the following in the 'err == io.EOF' check because the part.Read(buffer) may have hit the EOF whilst reading the 'remaining' part of the file without filling the buffer so there's no subsequent parts but we still need to break.
The text was updated successfully, but these errors were encountered: