xhr.json: properly pass failure callback to xhr.post()

This commit is contained in:
Andrew Dolgov 2021-11-14 16:07:52 +03:00
parent fe1feca009
commit d3d3bceec9
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ const xhr = {
},
json: function(url, params = {}, complete = undefined, failed = undefined) {
return new Promise((resolve, reject) =>
this.post(url, params).then((data) => {
this.post(url, params, null, failed).then((data) => {
let obj = null;
try {