review andrew

This commit is contained in:
Timo
2024-11-11 18:21:07 +01:00
parent fd19a57ec1
commit db005bbe3e
3 changed files with 3 additions and 3 deletions

View File

@@ -106,7 +106,7 @@ rc_message:
MSC3266 allows to request a room summary of rooms you are not joined. The
summary contains the room join rules. We need that to decide if the user gets
prompted with the option to knock ("Request to join"), a cannot join error or the
prompted with the option to knock ("Request to join call"), a cannot join error or the
join view.
Element Call requires a Livekit SFU alongside a [Livekit JWT

View File

@@ -81,7 +81,7 @@
"call_ended_heading": "Call ended",
"failed_heading": "Failed to join",
"failed_text": "Call not found or is not accessible.",
"knock_reject_body": "Your request was declined.",
"knock_reject_body": "Your request to join was declined.",
"knock_reject_heading": "Access denied",
"reason": "Reason"
},

View File

@@ -112,7 +112,7 @@ export const RoomPage: FC = () => {
case "canKnock": {
wasInWaitForInviteState.current =
wasInWaitForInviteState.current ||
"waitForInvite" === groupCallState.kind;
groupCallState.kind === "waitForInvite";
const knock =
groupCallState.kind === "canKnock" ? groupCallState.knock : null;
const label: string | JSX.Element =