Merge pull request #702 in FS/freeswitch from ~ARTURZ/freeswitch:FS-8812-switch_channel_check_signal-in_thread_only to master

* commit 'e24c3939791657b7bf771bec11a3c7b3f1473ed8':
  FS-8812 Respect in_thread_only parameter in switch_channel_check_signal()
This commit is contained in:
Mike Jerris 2016-02-08 12:44:14 -06:00
commit c7cb9d51bf
1 changed files with 1 additions and 2 deletions

View File

@ -2113,8 +2113,7 @@ SWITCH_DECLARE(int) switch_channel_state_change_pending(switch_channel_t *channe
SWITCH_DECLARE(int) switch_channel_check_signal(switch_channel_t *channel, switch_bool_t in_thread_only)
{
(void)in_thread_only;
switch_ivr_parse_next_signal_data(channel->session);
switch_ivr_parse_signal_data(channel->session, SWITCH_FALSE, in_thread_only);
return 0;
}