From: Giovanni Maruzzelli Date: Thu, 24 Jan 2013 18:16:05 +0000 (+0100) Subject: FS-4916 beep does not get recorded anymore X-Git-Tag: v1.3.13~110^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d6ed6429b8cc168c9f785fd768ce701dd276c9a;p=thirdparty%2Ffreeswitch.git FS-4916 beep does not get recorded anymore --- diff --git a/src/mod/endpoints/mod_skypopen/skypopen_protocol.c b/src/mod/endpoints/mod_skypopen/skypopen_protocol.c index 6bd7d2f9af..320c95483b 100644 --- a/src/mod/endpoints/mod_skypopen/skypopen_protocol.c +++ b/src/mod/endpoints/mod_skypopen/skypopen_protocol.c @@ -573,7 +573,8 @@ int skypopen_signaling_read(private_t *tech_pvt) DEBUGA_SKYPE("VOICEMAIL OUTGOING id is %s\n", SKYPOPEN_P_LOG, id); sprintf(tech_pvt->skype_voicemail_id, "%s", id); } else if (!strcasecmp(prop, "STATUS") && !strcasecmp(value, "PLAYED") ) { - switch_ivr_broadcast( tech_pvt->session_uuid_str, "gentones::%(500,0,800)",SMF_ECHO_ALEG|SMF_ECHO_BLEG); + //switch_ivr_broadcast( tech_pvt->session_uuid_str, "gentones::%(500,0,800)",SMF_ECHO_ALEG|SMF_ECHO_BLEG); + switch_ivr_broadcast( tech_pvt->session_uuid_str, "gentones::%(500,0,800)",SMF_ECHO_BLEG); memset(tech_pvt->skype_voicemail_id_greeting, '\0', sizeof(tech_pvt->skype_voicemail_id_greeting)); }