From: Nathan Neulinger Date: Tue, 17 Jun 2014 19:56:21 +0000 (-0500) Subject: FS-477 fix inappropriate firing of timeout after call proceeds --resolve X-Git-Tag: v1.5.13~145 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5856a4197ff653d524ae0a177801508779df4f6;p=thirdparty%2Ffreeswitch.git FS-477 fix inappropriate firing of timeout after call proceeds --resolve --- diff --git a/src/mod/endpoints/mod_skinny/mod_skinny.c b/src/mod/endpoints/mod_skinny/mod_skinny.c index 10c1fede9a..6cd46fc49a 100644 --- a/src/mod/endpoints/mod_skinny/mod_skinny.c +++ b/src/mod/endpoints/mod_skinny/mod_skinny.c @@ -773,6 +773,9 @@ switch_status_t channel_on_routing(switch_core_session_t *session) switch_channel_get_variable(channel, "skinny_device_name"), switch_channel_get_variable(channel, "skinny_device_instance"), switch_channel_get_name(channel)); } + /* clear digit timeout time */ + listener->digit_timeout_time = 0; + /* Future bridge should go straight */ switch_set_flag_locked(tech_pvt, TFLAG_FORCE_ROUTE); break;