From 3080de2b574768e08129550af0748f1c104a69ec Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Thu, 9 Sep 2021 17:00:32 +0200 Subject: [PATCH] Fixed wrong registration state names --- .../main/java/org/linphone/accountlogin/AccountLoginActivity.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/kotlin/1-AccountLogin/app/src/main/java/org/linphone/accountlogin/AccountLoginActivity.kt b/android/kotlin/1-AccountLogin/app/src/main/java/org/linphone/accountlogin/AccountLoginActivity.kt index 51b1d2f..f39bf7b 100644 --- a/android/kotlin/1-AccountLogin/app/src/main/java/org/linphone/accountlogin/AccountLoginActivity.kt +++ b/android/kotlin/1-AccountLogin/app/src/main/java/org/linphone/accountlogin/AccountLoginActivity.kt @@ -35,7 +35,7 @@ class AccountLoginActivity: AppCompatActivity() { // In this case, we want to know about the account registration status private val coreListener = object: CoreListenerStub() { override fun onAccountRegistrationStateChanged(core: Core, account: Account, state: RegistrationState, message: String) { - // If account has been configured correctly, we will go through InProgress and Registered states + // If account has been configured correctly, we will go through Progress and Ok states // Otherwise, we will be Failed. findViewById(R.id.registration_status).text = message