diff --git a/src/libs/actions/Report.js b/src/libs/actions/Report.js index 75c82c8a3eb5..81c94e13f8af 100644 --- a/src/libs/actions/Report.js +++ b/src/libs/actions/Report.js @@ -331,7 +331,13 @@ function fetchChatReportsByIDs(chatList) { } return fetchIOUReportID(participants[0]) - .then(iouReportID => fetchIOUReport(iouReportID, chatReport.reportID)); + .then((iouReportID) => { + if (!iouReportID) { + return Promise.resolve(); + } + + return fetchIOUReport(iouReportID, chatReport.reportID); + }); })); }) .then((iouReportObjects) => {