From: Ken Rice Date: Thu, 1 Oct 2015 20:23:09 +0000 (-0500) Subject: FS-8273 #resolve clear the CF_RECOVERING flag in a spot that was missed X-Git-Tag: v1.6.3~1^2~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a983cc5228ac3137c9ea1780dbc7fdb0ea9fa478;p=thirdparty%2Ffreeswitch.git FS-8273 #resolve clear the CF_RECOVERING flag in a spot that was missed --- diff --git a/src/mod/endpoints/mod_verto/mod_verto.c b/src/mod/endpoints/mod_verto/mod_verto.c index 69ef7ac767..86afb899d8 100644 --- a/src/mod/endpoints/mod_verto/mod_verto.c +++ b/src/mod/endpoints/mod_verto/mod_verto.c @@ -3125,6 +3125,7 @@ static switch_bool_t verto__attach_func(const char *method, cJSON *params, jsock if (tech_pvt) { switch_channel_clear_flag(tech_pvt->channel, CF_REINVITE); + switch_channel_clear_flag(tech_pvt->channel, CF_RECOVERING); switch_clear_flag(tech_pvt, TFLAG_ATTACH_REQ); if (switch_channel_test_flag(tech_pvt->channel, CF_CONFERENCE)) { switch_channel_set_flag(tech_pvt->channel, CF_CONFERENCE_ADV);