From 7d4f12906ea60ccb0226ef821ba2823961acedbe Mon Sep 17 00:00:00 2001 From: Erwan Croze Date: Mon, 9 Jan 2017 15:50:22 +0100 Subject: [PATCH] Fixing error of transport if outbound proxy was enabled --- Linphone/Model/SettingsManager.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Linphone/Model/SettingsManager.cs b/Linphone/Model/SettingsManager.cs index 2ce22d7..7a9acaa 100644 --- a/Linphone/Model/SettingsManager.cs +++ b/Linphone/Model/SettingsManager.cs @@ -374,8 +374,7 @@ namespace Linphone.Model { } } if (outboundProxy) { - Address proxyAddr = LinphoneManager.Instance.Core.CreateAddress(proxy); - cfg.Route = proxyAddr.AsStringUriOnly(); + cfg.Route = cfg.ServerAddr; } int result = 0; -- 2.21.0