Allow joining calls and video rooms without enabling the labs flags (#95)
Since Element Call has now reached production on Element X, Element Web needs to be able to at least participate in group calls. Starting a group call or creating a video room will still require the labs flags, for now. Note that Jitsi-based video rooms are also affected by this change. This is not because we intend to delabs them (rather, we intend to get rid of them in favor of Element Call video rooms), but because it's easiest to handle both video room variants consistently.
This commit is contained in:
@@ -1039,10 +1039,13 @@ describe("<MatrixChat />", () => {
|
||||
});
|
||||
|
||||
describe("when encryption is force disabled", () => {
|
||||
const unencryptedRoom = new Room("!unencrypted:server.org", loginClient, userId);
|
||||
const encryptedRoom = new Room("!encrypted:server.org", loginClient, userId);
|
||||
let unencryptedRoom: Room;
|
||||
let encryptedRoom: Room;
|
||||
|
||||
beforeEach(() => {
|
||||
unencryptedRoom = new Room("!unencrypted:server.org", loginClient, userId);
|
||||
encryptedRoom = new Room("!encrypted:server.org", loginClient, userId);
|
||||
|
||||
loginClient.getClientWellKnown.mockReturnValue({
|
||||
"io.element.e2ee": {
|
||||
force_disable: true,
|
||||
|
||||
Reference in New Issue
Block a user