Make presence for conferences work out of the box (#2514)

Use '@' instead of '-' for separating conference name and domain, which
is what FreeSWITCH mod_conference uses.
This commit is contained in:
Stefan Siegel
2017-04-17 09:01:04 -06:00
committed by FusionPBX
parent 505d2a5415
commit 47866df1ec
7 changed files with 19 additions and 19 deletions
@@ -43,7 +43,7 @@ else {
$conference_uuid = check_str($_REQUEST["c"]);
//replace the space with underscore
$conference_name = $conference_uuid.'-'.$_SESSION['domain_name'];
$conference_name = $conference_uuid.'@'.$_SESSION['domain_name'];
//create the conference list command
$switch_cmd = "conference '".$conference_name."' xml_list";