kopia lustrzana https://github.com/miklobit/TiddlyWiki5
Treat HTTP 201 response code as success
rodzic
c9f692d671
commit
e2046ce4ff
|
|
@ -39,7 +39,7 @@ exports.httpRequest = function(options) {
|
||||||
// Set up the state change handler
|
// Set up the state change handler
|
||||||
request.onreadystatechange = function() {
|
request.onreadystatechange = function() {
|
||||||
if(this.readyState === 4) {
|
if(this.readyState === 4) {
|
||||||
if(this.status === 200 || this.status === 204) {
|
if(this.status === 200 || this.status === 201 || this.status === 204) {
|
||||||
// Success!
|
// Success!
|
||||||
options.callback(null,this.responseText,this);
|
options.callback(null,this.responseText,this);
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Ładowanie…
Reference in New Issue