From b16928e75230f01febe80ec591adaf270ae4610a Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Tue, 11 Apr 2023 13:55:40 -0300 Subject: [PATCH] fix: Add missing room types to RoomType.swift (#5024) --- ios/Shared/Models/RoomType.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ios/Shared/Models/RoomType.swift b/ios/Shared/Models/RoomType.swift index eef57ee3a..4d600a230 100644 --- a/ios/Shared/Models/RoomType.swift +++ b/ios/Shared/Models/RoomType.swift @@ -11,4 +11,6 @@ import Foundation enum RoomType: String, Codable { case direct = "d" case group = "p" + case channel = "c" + case livechat = "l" }