mirror of
https://github.com/vector-im/element-call.git
synced 2026-07-18 18:59:23 +00:00
review andrew
This commit is contained in:
@@ -106,7 +106,7 @@ rc_message:
|
|||||||
|
|
||||||
MSC3266 allows to request a room summary of rooms you are not joined. The
|
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
|
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.
|
join view.
|
||||||
|
|
||||||
Element Call requires a Livekit SFU alongside a [Livekit JWT
|
Element Call requires a Livekit SFU alongside a [Livekit JWT
|
||||||
|
|||||||
@@ -81,7 +81,7 @@
|
|||||||
"call_ended_heading": "Call ended",
|
"call_ended_heading": "Call ended",
|
||||||
"failed_heading": "Failed to join",
|
"failed_heading": "Failed to join",
|
||||||
"failed_text": "Call not found or is not accessible.",
|
"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",
|
"knock_reject_heading": "Access denied",
|
||||||
"reason": "Reason"
|
"reason": "Reason"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -112,7 +112,7 @@ export const RoomPage: FC = () => {
|
|||||||
case "canKnock": {
|
case "canKnock": {
|
||||||
wasInWaitForInviteState.current =
|
wasInWaitForInviteState.current =
|
||||||
wasInWaitForInviteState.current ||
|
wasInWaitForInviteState.current ||
|
||||||
"waitForInvite" === groupCallState.kind;
|
groupCallState.kind === "waitForInvite";
|
||||||
const knock =
|
const knock =
|
||||||
groupCallState.kind === "canKnock" ? groupCallState.knock : null;
|
groupCallState.kind === "canKnock" ? groupCallState.knock : null;
|
||||||
const label: string | JSX.Element =
|
const label: string | JSX.Element =
|
||||||
|
|||||||
Reference in New Issue
Block a user