From a5b0094d0832cbd365cad2566b00279017dd424d Mon Sep 17 00:00:00 2001 From: Santhoshkumar Sellavel <85645967+Santhosh-Sellavel@users.noreply.github.com> Date: Sat, 14 May 2022 00:31:29 +0530 Subject: [PATCH] Crash fixed --- src/libs/ReportUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index 2cfdfa289711..04692d69780f 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -450,7 +450,7 @@ function getDisplayNamesWithTooltips(participants, isMultipleParticipantReport) */ function getReportName(report, personalDetailsForParticipants = {}, policies = {}) { if (lodashGet(report, 'reportNameValuePairs.type') !== 'chat') { - return report.reportName || ''; + return lodashGet(report, 'reportName', ''); } let formattedName;