From 9d3d3a5d69d8d1d7f3e117d5691b4aa1c92de694 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 24 Aug 2006 00:44:47 +0000 Subject: [PATCH] add 1 person dyna conference git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2380 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_conference/mod_conference.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 37aa66bca8..f8b5e334a7 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -2209,7 +2209,7 @@ static void conference_function(switch_core_session_t *session, char *data) } - if (bridgeto) { + if (!switch_strlen_zero(bridgeto) && strcasecmp(bridgeto, "none")) { if (conference_outcall(conference, session, bridgeto, 60, NULL, NULL) != SWITCH_STATUS_SUCCESS) { goto done; }