diff --git a/web/src/api/statestore/main.ts b/web/src/api/statestore/main.ts index 47e30fe..1a7d826 100644 --- a/web/src/api/statestore/main.ts +++ b/web/src/api/statestore/main.ts @@ -183,6 +183,7 @@ export class StateStore { return true case "": case "support.feline.policy.lists.msc.v1": + case "org.matrix.msc3417.call": } const replacementRoom = entry.meta.tombstone?.replacement_room if ( diff --git a/web/src/api/types/mxtypes.ts b/web/src/api/types/mxtypes.ts index a1b6cf4..6f72b70 100644 --- a/web/src/api/types/mxtypes.ts +++ b/web/src/api/types/mxtypes.ts @@ -22,7 +22,7 @@ export type ContentURI = string export type RoomAlias = string export type ReceiptType = "m.read" | "m.read.private" export type RoomVersion = "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" -export type RoomType = "" | "m.space" | "support.feline.policy.lists.msc.v1" +export type RoomType = "" | "m.space" | "support.feline.policy.lists.msc.v1" | "org.matrix.msc3417.call" export type RelationType = "m.annotation" | "m.reference" | "m.replace" | "m.thread" export type JSONValue =