From 22d1960ce299bc21fe445521e08689410b01fc1f Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Mon, 30 Dec 2013 10:51:10 +0100 Subject: [PATCH] Fixed user not found message not showing --- src/org/linphone/LinphoneActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/linphone/LinphoneActivity.java b/src/org/linphone/LinphoneActivity.java index 2b6030e87..6f48f9d4d 100644 --- a/src/org/linphone/LinphoneActivity.java +++ b/src/org/linphone/LinphoneActivity.java @@ -825,7 +825,7 @@ public class LinphoneActivity extends FragmentActivity implements // Convert LinphoneCore message for internalization if (message != null && message.equals("Call declined.")) { 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); } else if (message != null && message.equals("Incompatible media parameters.")) { displayCustomToast(getString(R.string.error_incompatible_media), Toast.LENGTH_LONG);