Fix AVPF default RTCP interval when using wizard for other than linphone account

This commit is contained in:
Sylvain Berfini 2014-07-03 12:56:39 +02:00
parent 4a74bd5f5a
commit 693a56f519

View file

@ -312,7 +312,8 @@ public class SetupActivity extends FragmentActivity implements OnClickListener {
String forcedProxy = getResources().getString(R.string.setup_forced_proxy); String forcedProxy = getResources().getString(R.string.setup_forced_proxy);
if (!TextUtils.isEmpty(forcedProxy)) { if (!TextUtils.isEmpty(forcedProxy)) {
builder.setProxy(forcedProxy) builder.setProxy(forcedProxy)
.setOutboundProxyEnabled(true); .setOutboundProxyEnabled(true)
.setAvpfRRInterval(5);
} }
} }