Skip to content

Commit b0a473c

Browse files
committed
Merge pull request #8 from victormier/accept-2xx
Take any 2xx request as successful
2 parents cd926ce + 38eb78e commit b0a473c

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

example/bundle.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/components/FileUploadProgress.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -136,14 +136,14 @@ var FileUploadProgress = function (_React$Component) {
136136
req.addEventListener('load', function (e) {
137137
_this2.proxy.removeAllListeners(['abort']);
138138
var newState = { progress: 100 };
139-
if (req.status !== 200) {
140-
newState.hasError = true;
139+
if (req.status >= 200 && req.status <= 299) {
141140
_this2.setState(newState, function () {
142-
_this2.props.onError(e, req);
141+
_this2.props.onLoad(e, req);
143142
});
144143
} else {
144+
newState.hasError = true;
145145
_this2.setState(newState, function () {
146-
_this2.props.onLoad(e, req);
146+
_this2.props.onError(e, req);
147147
});
148148
}
149149
}, false);

src/components/FileUploadProgress.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,14 @@ class FileUploadProgress extends React.Component {
102102
req.addEventListener('load', (e) =>{
103103
this.proxy.removeAllListeners(['abort']);
104104
let newState = {progress: 100};
105-
if (req.status !== 200) {
106-
newState.hasError = true;
105+
if (req.status >= 200 && req.status <= 299) {
107106
this.setState(newState, () => {
108-
this.props.onError(e, req);
107+
this.props.onLoad(e, req);
109108
});
110109
} else {
110+
newState.hasError = true;
111111
this.setState(newState, () => {
112-
this.props.onLoad(e, req);
112+
this.props.onError(e, req);
113113
});
114114
}
115115
}, false);

0 commit comments

Comments
 (0)