web/statestore: don't hide video rooms (#614)
Some checks failed
Go / Lint Go (old) (push) Has been cancelled
Go / Lint Go (latest) (push) Has been cancelled
JS / Lint JS (push) Has been cancelled

This commit is contained in:
Sebastian Spaeth 2025-04-04 11:08:49 +02:00 committed by GitHub
parent 5052918462
commit c2b12b1a88
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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 =