From 2f89532ea9d109901e60ae9d4a05c4eb5cbc73cd Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Fri, 8 Mar 2013 16:58:23 +0100 Subject: [PATCH] Removed last ; in contact params --- src/org/linphone/LinphoneManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/linphone/LinphoneManager.java b/src/org/linphone/LinphoneManager.java index 65148120f..7f47fa291 100644 --- a/src/org/linphone/LinphoneManager.java +++ b/src/org/linphone/LinphoneManager.java @@ -700,7 +700,7 @@ public final class LinphoneManager implements LinphoneCoreListener { String regId = getPrefString(R.string.push_reg_id_key, null); String appId = getString(R.string.push_sender_id); if (regId != null && getPrefBoolean(R.string.pref_push_notification_key, mR.getBoolean(R.bool.pref_push_notification_default))) { - String contactInfos = "app-id=" + appId + ";pn-type=google;pn-tok=" + regId + ";pn-msg-str=IM_MSG;pn-call-str=IC_MSG;pn-call-snd=ring.caf;pn-msg-snd=msg.caf;"; + String contactInfos = "app-id=" + appId + ";pn-type=google;pn-tok=" + regId + ";pn-msg-str=IM_MSG;pn-call-str=IC_MSG;pn-call-snd=ring.caf;pn-msg-snd=msg.caf"; proxycon.setContactParameters(contactInfos); } }