mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-04-24 04:38:31 +00:00
Fixed user not found message not showing
This commit is contained in:
parent
8711e89597
commit
1337dbfdb2
1 changed files with 1 additions and 1 deletions
|
|
@ -825,7 +825,7 @@ public class LinphoneActivity extends FragmentActivity implements
|
||||||
// Convert LinphoneCore message for internalization
|
// Convert LinphoneCore message for internalization
|
||||||
if (message != null && message.equals("Call declined.")) {
|
if (message != null && message.equals("Call declined.")) {
|
||||||
displayCustomToast(getString(R.string.error_call_declined), Toast.LENGTH_LONG);
|
displayCustomToast(getString(R.string.error_call_declined), Toast.LENGTH_LONG);
|
||||||
} else if (message != null && message.equals("User not found.")) {
|
} else if (message != null && message.equals("Not Found")) {
|
||||||
displayCustomToast(getString(R.string.error_user_not_found), Toast.LENGTH_LONG);
|
displayCustomToast(getString(R.string.error_user_not_found), Toast.LENGTH_LONG);
|
||||||
} else if (message != null && message.equals("Incompatible media parameters.")) {
|
} else if (message != null && message.equals("Incompatible media parameters.")) {
|
||||||
displayCustomToast(getString(R.string.error_incompatible_media), Toast.LENGTH_LONG);
|
displayCustomToast(getString(R.string.error_incompatible_media), Toast.LENGTH_LONG);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue