1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-12 21:55:56 +00:00

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

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 {