diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js index ffb18bcab86a..21e8884b9261 100644 --- a/src/libs/ReportUtils.js +++ b/src/libs/ReportUtils.js @@ -1393,7 +1393,9 @@ function getChatByParticipants(newParticipantList) { if (!report || !report.participants) { return false; } - return _.isEqual(newParticipantList, report.participants.sort()); + + // Only return the room if it has all the participants and is not a policy room + return !isUserCreatedPolicyRoom(report) && _.isEqual(newParticipantList, report.participants.sort()); }); }