diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index 7390bac47dd1..ee8d55fdd777 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -815,7 +815,7 @@ function getRoomWelcomeMessage(report, isUserPolicyAdmin) { * @returns {Boolean} */ function chatIncludesConcierge(report) { - return report.participantAccountIDs && _.contains(report.participantAccountIDs, CONST.ACCOUNT_ID.CONCIERGE); + return !_.isEmpty(report.participantAccountIDs) && _.contains(report.participantAccountIDs, CONST.ACCOUNT_ID.CONCIERGE); } /**