Skip to content

Commit

Permalink
fix whisperedTo issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nkdengineer committed Jun 25, 2024
1 parent 3fd3d5a commit e3c2590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/ReportActionsUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ function getWhisperedTo(reportAction: OnyxInputOrEntry<ReportAction>): number[]
return [];
}
const originalMessage = getOriginalMessage(reportAction);
const message = reportAction?.message;
const message = getReportActionMessage(reportAction);

if (!(originalMessage && 'whisperedTo' in originalMessage) && !(message && 'whisperedTo' in message)) {
return [];
Expand Down

0 comments on commit e3c2590

Please sign in to comment.