diff --git a/src/mod/endpoints/mod_verto/mod_verto.c b/src/mod/endpoints/mod_verto/mod_verto.c index 36aba6db5e..b026d73eda 100644 --- a/src/mod/endpoints/mod_verto/mod_verto.c +++ b/src/mod/endpoints/mod_verto/mod_verto.c @@ -3871,7 +3871,9 @@ static switch_bool_t verto__info_func(const char *method, cJSON *params, jsock_t switch_mutex_lock(jsock->flag_mutex); - if (!(context = switch_event_get_header(jsock->vars, "user_context"))) { + + if (!(context = switch_event_get_header(jsock->vars, "user_chat_context")) + && !(context = switch_event_get_header(jsock->vars, "user_context"))) { context = switch_either(jsock->context, jsock->profile->context); }