Fix compilation

This commit is contained in:
Chumva 2019-09-19 16:41:23 +03:00
parent b1edd88daa
commit 146a7e4b8c

View file

@ -271,8 +271,13 @@ class TelegramHelper private constructor() {
fun applyAuthenticationParameter(parameterType: TelegramAuthenticationParameterType, parameterValue: String) { fun applyAuthenticationParameter(parameterType: TelegramAuthenticationParameterType, parameterValue: String) {
if (!TextUtils.isEmpty(parameterValue)) { if (!TextUtils.isEmpty(parameterValue)) {
when (parameterType) { when (parameterType) {
PHONE_NUMBER -> client!!.send(TdApi.SetAuthenticationPhoneNumber(parameterValue, false, false), AuthorizationRequestHandler()) PHONE_NUMBER -> client!!.send(
CODE -> client!!.send(TdApi.CheckAuthenticationCode(parameterValue, "", ""), AuthorizationRequestHandler()) TdApi.SetAuthenticationPhoneNumber(
parameterValue,
TdApi.PhoneNumberAuthenticationSettings(false, false, false)
), AuthorizationRequestHandler()
)
CODE -> client!!.send(TdApi.CheckAuthenticationCode(parameterValue), AuthorizationRequestHandler())
PASSWORD -> client!!.send(TdApi.CheckAuthenticationPassword(parameterValue), AuthorizationRequestHandler()) PASSWORD -> client!!.send(TdApi.CheckAuthenticationPassword(parameterValue), AuthorizationRequestHandler())
} }
} }