mirror of
https://github.com/tulir/gomuks.git
synced 2025-04-20 10:33:41 -05:00
web/statestore: don't hide video rooms (#614)
This commit is contained in:
parent
5052918462
commit
c2b12b1a88
2 changed files with 2 additions and 1 deletions
|
@ -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 (
|
||||||
|
|
|
@ -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 =
|
||||||
|
|
Loading…
Add table
Reference in a new issue