fix: Add missing room types to RoomType.swift (#5024)

This commit is contained in:
Diego Mello 2023-04-11 13:55:40 -03:00
parent 0f46a782c5
commit b16928e752
1 changed files with 2 additions and 0 deletions

View File

@ -11,4 +11,6 @@ import Foundation
enum RoomType: String, Codable {
case direct = "d"
case group = "p"
case channel = "c"
case livechat = "l"
}