Skip to content

Commit

Permalink
fixup! feat: Join and leave federated participants using their federa…
Browse files Browse the repository at this point in the history
…ted session

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
  • Loading branch information
danxuliu committed Jul 24, 2024
1 parent b0c9ce4 commit fd941a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/features/bootstrap/FeatureContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ protected function assertAttendeeList(string $identifier, ?TableNode $formData,
if (isset($attendee['sessionIds']) && str_contains($attendee['sessionIds'], '@{$LOCAL_REMOTE_URL}')) {
$attendee['sessionIds'] = str_replace('{$LOCAL_REMOTE_URL}', rtrim($this->localRemoteServerUrl, '/'), $attendee['sessionIds']);
}
if (isset($attendee['actorId']) && str_contains($attendee['sessionIds'], '@{$REMOTE_URL}')) {
if (isset($attendee['sessionIds']) && str_contains($attendee['sessionIds'], '@{$REMOTE_URL}')) {
$attendee['sessionIds'] = str_replace('{$REMOTE_URL}', rtrim($this->remoteServerUrl, '/'), $attendee['sessionIds']);
}

Expand Down

0 comments on commit fd941a6

Please sign in to comment.