diff --git a/plugins/vendor/zoom/lib/model/kZoomEngine.php b/plugins/vendor/zoom/lib/model/kZoomEngine.php index 79213428f3f..5226721c548 100644 --- a/plugins/vendor/zoom/lib/model/kZoomEngine.php +++ b/plugins/vendor/zoom/lib/model/kZoomEngine.php @@ -382,6 +382,7 @@ protected function extractMeetingParticipants($meetingId, $zoomIntegration, $mee return null; } + $meetingOwnerName = strtolower($meetingOwnerName); $accessToken = kZoomOauth::getValidAccessToken($zoomIntegration); $participantsData = $this->zoomClient->retrieveMeetingParticipant($accessToken, $meetingId); $participants = new kZoomParticipants(); @@ -394,7 +395,7 @@ protected function extractMeetingParticipants($meetingId, $zoomIntegration, $mee foreach ($participantsEmails as $participantEmail) { $userName = $this->matchZoomUserName($participantEmail, $zoomIntegration); - if($meetingOwnerName != $userName) + if($meetingOwnerName !== strtolower($userName)) { $result[] = $userName; }