Skip to content

Commit

Permalink
Plugin: Zoom: Fix conditional - refs BT#19534
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelFQC committed Apr 25, 2022
1 parent be67794 commit d9d1cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/zoom/Entity/Meeting.php
Expand Up @@ -532,7 +532,7 @@ public function getRegistrantByUser(User $user): ?Registrant
)
;

return $this->registrants->matching($criteria)->first() ?? null;
return $this->registrants->matching($criteria)->first() ?: null;
}

/**
Expand Down

0 comments on commit d9d1cbe

Please sign in to comment.