Tighten hand state announcement wording

This commit is contained in:
Storm Dragon
2026-05-22 00:31:42 -04:00
parent 8e9f5362b7
commit a0a1b7967b
+2 -2
View File
@@ -1839,14 +1839,14 @@ function setUserStatus(id, elt, userinfo, notify) {
elt.classList.add('user-status-raisehand');
elt.setAttribute('aria-label', `${username} (hand raised)`);
if(notify && !wasRaised) {
announceUrgent(`${username} raised their hand`);
announceUrgent(`${username}: hand raised`);
playNotificationSound('hand-raised');
}
} else {
elt.classList.remove('user-status-raisehand');
elt.setAttribute('aria-label', username);
if(notify && wasRaised) {
announceUrgent(`${username} lowered their hand`);
announceUrgent(`${username}: hand lowered`);
playNotificationSound('hand-lowered');
}
}