mirror of https://github.com/rclone/rclone.git
Handle nil pointer of response struct to avoid crash
This commit is contained in:
parent
e07847e3ea
commit
88b0263bb8
|
@ -31,6 +31,9 @@ func (u *Uploader) NotifyUploadProgress(c chan Upload) {
|
|||
}
|
||||
|
||||
func (f *Fs) shouldRetryChunk(ctx context.Context, resp *http.Response, err error, newOff *int64) (bool, error) {
|
||||
if resp == nil {
|
||||
return true, err
|
||||
}
|
||||
|
||||
switch resp.StatusCode {
|
||||
case 204:
|
||||
|
|
Loading…
Reference in New Issue