zebra-report: deploy — new promotions start muted
This commit is contained in:
parent
33f0fbec55
commit
49b7966178
1 changed files with 10 additions and 2 deletions
|
|
@ -3229,6 +3229,14 @@ async function onRoleChanged(prev, next){
|
|||
inRoleTransition = true;
|
||||
try {
|
||||
if (!canSpeak(prev) && canSpeak(next)){
|
||||
/* Listener -> speaker (or cohost/host) is a brand-new mic grab.
|
||||
* Default to MUTED so the user doesn't broadcast whatever was
|
||||
* happening in their room when they accepted. They can click
|
||||
* 'unmute' when they're ready. ensureMicAndUI() reads the
|
||||
* sessionStorage value via applyMuteState, so set it BEFORE
|
||||
* the acquire. */
|
||||
muted = true;
|
||||
try { sessionStorage.setItem(MUTE_STATE_KEY, '1'); } catch(_){}
|
||||
await ensureMicAndUI();
|
||||
for (const [uuid, mm] of members){
|
||||
if (uuid === myUUID) continue;
|
||||
|
|
@ -3898,8 +3906,8 @@ logLine('', 'ready — pick a handle, type a rendezvous code, enter the space');
|
|||
|
||||
<footer style="margin:2.2rem auto 0;font-size:0.65rem;color:#999;line-height:1.7;word-break:break-all;font-family:monospace">
|
||||
<span id="pi-seal" style="color:#777;cursor:default;user-select:none" title="">page integrity</span> · built <span class="stamp-date">2026-06-03</span><br>
|
||||
md5 <span class="stamp-md5">60524e74b32d941769b3ea31eb9d067c</span><br>
|
||||
sha256 <span class="stamp-sha">c16114b2737d13d6bb8699e3daa59d6702092fa789f1066241b51b1fea9c1dc6</span><br>
|
||||
md5 <span class="stamp-md5">29d8d846c9ff45486324b3901e6cde96</span><br>
|
||||
sha256 <span class="stamp-sha">a73c5e69c967f4060d5db098904d3469bb89f846caff168319280aab31d341fd</span><br>
|
||||
<span style="color:#bbb">hashes are of this page with these two fields zeroed — to verify, blank them and re-hash</span><br>
|
||||
<span style="color:#bbb">one self-contained file — <strong>save a copy</strong> and verify against these hashes; point at your own servers with ?signal= and ?turncred=, or <a href="host-your-own.html" style="color:#999">host your own community</a></span>
|
||||
</footer>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue