提交 28ae331c authored 作者: Michael Jerris's avatar Michael Jerris

FS-7930: [mod_conference] Correct termination of conference when the last member…

FS-7930: [mod_conference] Correct termination of conference when the last member with endconf left.  Caused by typo in migration to conference_utils_set_flag function when we switched to array based flags
上级 a2edd01e
......@@ -664,7 +664,8 @@ void *SWITCH_THREAD_FUNC conference_thread_run(switch_thread_t *thread, void *ob
switch_epoch_time_now(NULL) - conference->endconference_time > conference->endconference_grace_time) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "Conference %s: endconf grace time exceeded (%u)\n",
conference->name, conference->endconference_grace_time);
conference_utils_set_flag(conference, CFLAG_DESTRUCT | CFLAG_ENDCONF_FORCED);
conference_utils_set_flag(conference, CFLAG_DESTRUCT);
conference_utils_set_flag(conference, CFLAG_ENDCONF_FORCED);
}
switch_mutex_unlock(conference->mutex);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论