This commit is contained in:
Andrey Blinov
2020-08-18 17:37:46 +07:00
parent 4abb6708b2
commit 5b901f7e2a
5 changed files with 103 additions and 25 deletions

View File

@@ -56,6 +56,6 @@ class ChatConfig {
}
private func getConfigString(_ key: String) -> String {
self.config.value(forKey: key) as! String
self.config.value(forKey: key) != nil ? self.config.value(forKey: key) as! String : ""
}
}