From 4fe481cb49cfab63dd47fffa4918b40aad96910c Mon Sep 17 00:00:00 2001 From: Jeff Lenk Date: Sat, 15 Feb 2014 23:15:58 -0600 Subject: [PATCH] FS-5377 --resolve --- 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 6518cdc53c..02bd3f9eb4 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -8732,7 +8732,7 @@ static conference_obj_t *conference_new(char *name, conf_xml_cfg_t cfg, switch_c if (!zstr(auto_gain_level)) { int level = 0; - if (switch_true(auto_gain_level)) { + if (switch_true(auto_gain_level) && !switch_is_number(auto_gain_level)) { level = DEFAULT_AGC_LEVEL; } else { level = atoi(auto_gain_level);