Skip to content

Commit 0f9e109

Browse files
authored
Merge pull request #56389 from Expensify/dsilva_unmaskAdminRoom
Adding check to return true if room is #admins for FS session
2 parents edd06e4 + e6a3cc4 commit 0f9e109

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/libs/ReportUtils.ts

+4
Original file line numberDiff line numberDiff line change
@@ -9065,6 +9065,10 @@ function shouldUnmaskChat(participantsContext: OnyxEntry<PersonalDetailsList>, r
90659065
return true;
90669066
}
90679067

9068+
if (isAdminRoom(report)) {
9069+
return true;
9070+
}
9071+
90689072
const participantAccountIDs = Object.keys(report.participants);
90699073

90709074
if (participantAccountIDs.length > 2) {

0 commit comments

Comments
 (0)