diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 3ec6e3e38f24ef116908c8c736a0c6dddb9d2b10..7c5053102121fde936c259a8828f725d3500c37f 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -2859,6 +2859,11 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, struc } if (user->kicktime && (user->kicktime <= now.tv_sec)) { + if (ast_test_flag64(confflags, CONFFLAG_KICK_CONTINUE)) { + ret = 0; + } else { + ret = -1; + } break; } @@ -2929,6 +2934,11 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, struc now = ast_tvnow(); if (timeout && now.tv_sec >= timeout) { + if (ast_test_flag64(confflags, CONFFLAG_KICK_CONTINUE)) { + ret = 0; + } else { + ret = -1; + } break; }