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

This commit is contained in:
Diego Mello 2023-04-11 13:55:40 -03:00 committed by GitHub
parent df62706b02
commit 2849288e4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"
}