Skip to content

Commit cd06c49

Browse files
committed
fix: Prepare backport of future PR
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 parent fe52b9b commit cd06c49

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/Controller/RoomController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,10 +455,10 @@ public function getSingleRoom(string $token): DataResponse {
455455

456456
try {
457457
$participant = $this->participantService->getParticipant($room, $this->userId, $sessionId);
458-
} catch (ParticipantNotFoundException $e) {
458+
} catch (ParticipantNotFoundException) {
459459
try {
460460
$participant = $this->participantService->getParticipantBySession($room, $sessionId);
461-
} catch (ParticipantNotFoundException $e) {
461+
} catch (ParticipantNotFoundException) {
462462
}
463463
}
464464
} else {

0 commit comments

Comments
 (0)