From eea8bd18fe930f6ee4cc0bf9e5dd3e2c5f446c56 Mon Sep 17 00:00:00 2001 From: Simon Morlat <simon.morlat@linphone.org> Date: Wed, 16 Oct 2013 12:09:25 +0200 Subject: [PATCH] do not display_warning() for bad uris --- coreapi/linphonecore.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index 674b8e3d89..1b504d499a 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -2315,10 +2315,7 @@ LinphoneAddress * linphone_core_interpret_url(LinphoneCore *lc, const char *url) if (uri!=NULL){ return uri; } - /* else we could not do anything with url given by user, so display an error */ - if (lc->vtable.display_warning!=NULL){ - lc->vtable.display_warning(lc,_("Could not parse given sip address. A sip url usually looks like sip:user@domain")); - } + return NULL; } -- GitLab