diff --git a/src/libs/actions/Report.js b/src/libs/actions/Report.js index 57dcda067c91..8bd9f834b9ba 100644 --- a/src/libs/actions/Report.js +++ b/src/libs/actions/Report.js @@ -338,7 +338,13 @@ function fetchChatReportsByIDs(chatList, shouldRedirectIfInacessible = false) { } return fetchIOUReportID(participants[0]) - .then(iouReportID => fetchIOUReport(iouReportID, chatReport.reportID)); + .then((iouReportID) => { + if (!iouReportID) { + return Promise.resolve(); + } + + return fetchIOUReport(iouReportID, chatReport.reportID); + }); })); }) .then((iouReportObjects) => {