Fix passcode

This commit is contained in:
Ali 2020-04-10 16:19:02 +04:00
parent d78f5dc991
commit c9be658241

View File

@ -295,6 +295,10 @@ final class AuthorizedApplicationContext {
let _ = (appLockContext.isCurrentlyLocked
|> take(1)
|> deliverOnMainQueue).start(next: { locked in
guard let strongSelf = self else {
return
}
guard !locked else {
return
}
@ -316,8 +320,6 @@ final class AuthorizedApplicationContext {
}
}
}
})
}
if chatIsVisible {
return
@ -371,6 +373,8 @@ final class AuthorizedApplicationContext {
}
}))
}
})
}
}
}
}))