mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 03:15:56 +00:00
fix related to Promise.allSettled() returning a bit different result object
This commit is contained in:
@@ -179,7 +179,7 @@ const Headlines = {
|
|||||||
results.forEach((res) => {
|
results.forEach((res) => {
|
||||||
if (res) {
|
if (res) {
|
||||||
try {
|
try {
|
||||||
const obj = JSON.parse(res);
|
const obj = JSON.parse(res.value);
|
||||||
|
|
||||||
if (obj.feeds)
|
if (obj.feeds)
|
||||||
feeds = feeds.concat(obj.feeds);
|
feeds = feeds.concat(obj.feeds);
|
||||||
|
|||||||
Reference in New Issue
Block a user