no message

This commit is contained in:
Peter Iakovlev
2018-03-27 12:03:25 +04:00
parent 242505b5f5
commit aa60d76fd8
22 changed files with 776 additions and 379 deletions

View File

@@ -75,8 +75,9 @@ public final class AuthorizationSequenceController: NavigationController {
var countryCode: Int32 = 1
if let countryId = countryId {
let normalizedId = countryId.uppercased()
for (code, idAndName) in countryCodeToIdAndName {
if idAndName.0 == countryId {
if idAndName.0 == normalizedId {
countryCode = Int32(code)
break
}