This commit is contained in:
2026-06-21 02:24:24 -04:00
parent cc63f95289
commit 93bc281c6d

View File

@@ -123,7 +123,8 @@ function dsc01_get_participant_id() {
$addr = $r[0]['xchan_addr'] ?? '';
$parts = explode('@', $addr);
return $parts[0] ?? '';
// Strip guest: prefix — Placekey is the channel name without the guest: qualifier.
return preg_replace('/^guest:/', '', $parts[0] ?? '');
}
// ---------------------------------------------------------------------------