From 4ac142370aaa2cdf7bb0ffa8359627551dac0ffb Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Fri, 11 Oct 2013 17:16:01 +0200 Subject: [PATCH] Remove obsolote push notif infos from contacts params --- src/org/linphone/setup/SetupActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/linphone/setup/SetupActivity.java b/src/org/linphone/setup/SetupActivity.java index 179609dc0..04e4b96bf 100644 --- a/src/org/linphone/setup/SetupActivity.java +++ b/src/org/linphone/setup/SetupActivity.java @@ -306,7 +306,7 @@ public class SetupActivity extends FragmentActivity implements OnClickListener { String regId = mPrefs.getPushNotificationRegistrationID(); String appId = getString(R.string.push_sender_id); if (regId != null && mPrefs.isPushNotificationEnabled()) { - 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; mPrefs.setNewAccountContactParameters(contactInfos); } }