From d0af6ce81d4ef0b7fa678b28970f0c9e3274542d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mariusz=20Czu=C5=82ada?= Date: Wed, 29 May 2013 00:19:49 +0200 Subject: [PATCH] FS-5157 patch accepted --- src/mod/applications/mod_conference/mod_conference.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index cce72306a4..ce5dec977c 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -6362,6 +6362,12 @@ static switch_status_t conf_api_sub_get(conference_obj_t *conference, } else if (strcasecmp(argv[2], "endconf_grace_time") == 0) { stream->write_function(stream, "%d", conference->endconf_grace_time); + } else if (strcasecmp(argv[2], "uuid") == 0) { + stream->write_function(stream, "%s", + conference->uuid_str); + } else if (strcasecmp(argv[2], "wait_mod") == 0) { + stream->write_function(stream, "%s", + switch_test_flag(conference, CFLAG_WAIT_MOD) ? "true" : ""); } else { ret_status = SWITCH_STATUS_FALSE; }