Also display "video rooms"

Add room type "org.matrix.msc3417.call" to the list of known rooms that are displayed in the room list.
This commit is contained in:
Sebastian Spaeth 2025-04-04 11:00:35 +02:00
parent 5052918462
commit faa7469066
2 changed files with 2 additions and 1 deletions

View file

@ -183,6 +183,7 @@ export class StateStore {
return true return true
case "": case "":
case "support.feline.policy.lists.msc.v1": case "support.feline.policy.lists.msc.v1":
case "org.matrix.msc3417.call":
} }
const replacementRoom = entry.meta.tombstone?.replacement_room const replacementRoom = entry.meta.tombstone?.replacement_room
if ( if (

View file

@ -22,7 +22,7 @@ export type ContentURI = string
export type RoomAlias = string export type RoomAlias = string
export type ReceiptType = "m.read" | "m.read.private" export type ReceiptType = "m.read" | "m.read.private"
export type RoomVersion = "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" 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 RelationType = "m.annotation" | "m.reference" | "m.replace" | "m.thread"
export type JSONValue = export type JSONValue =