fix: Add missing room types to RoomType.swift (#5024)
This commit is contained in:
parent
df62706b02
commit
2849288e4a
|
@ -11,4 +11,6 @@ import Foundation
|
||||||
enum RoomType: String, Codable {
|
enum RoomType: String, Codable {
|
||||||
case direct = "d"
|
case direct = "d"
|
||||||
case group = "p"
|
case group = "p"
|
||||||
|
case channel = "c"
|
||||||
|
case livechat = "l"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue