1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 01:25:56 +00:00

fix related to Promise.allSettled() returning a bit different result object

This commit is contained in:
Andrew Dolgov
2021-03-10 20:34:48 +03:00
parent 3e1b3e8ea8
commit f9a9fcbb56

View File

@@ -179,7 +179,7 @@ const Headlines = {
results.forEach((res) => {
if (res) {
try {
const obj = JSON.parse(res);
const obj = JSON.parse(res.value);
if (obj.feeds)
feeds = feeds.concat(obj.feeds);