1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 12:25: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 9b5d199ad9
commit 8b743f7249

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 {