Skip to content

Commit 9c1ffdb

Browse files
authoredDec 1, 2022
fix(aliyundrive): return error if got wrong http code (#2543)
1 parent 18a63e3 commit 9c1ffdb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎drivers/aliyundrive/util.go

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ func (d *AliDrive) request(url, method string, callback base.ReqCallback, resp i
6262
return d.request(url, method, callback, resp)
6363
}
6464
return nil, errors.New(e.Message), e
65+
} else if res.IsError() {
66+
return nil, errors.New("bad status code " + res.Status()), e
6567
}
6668
return res.Body(), nil, e
6769
}

0 commit comments

Comments
 (0)