We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1702b15 commit 16ce793Copy full SHA for 16ce793
src/utils/matrix.ts
@@ -251,14 +251,24 @@ export async function createRoom(
251
"m.room.encryption": 100,
252
"m.room.name": 50,
253
"m.room.message": 0,
254
- "m.room.encrypted": 50,
+ // revert this once we do not rely on room messages for perSenderKeys anymore
255
+ "m.room.encrypted": 0,
256
"m.sticker": 50,
257
"org.matrix.msc3401.call.member": 0,
258
},
259
users: {
260
[client.getUserId()!]: 100,
261
262
263
+ initial_state: [
264
+ {
265
+ type: "m.room.encryption",
266
+ state_key: "",
267
+ content: {
268
+ algorithm: "m.megolm.v1.aes-sha2",
269
+ },
270
271
+ ],
272
});
273
274
// Wait for the room to arrive
0 commit comments