refactor: rename "Server Mute/Deafen" to "Space Mute/Deafen" across entire stack
Aligns voice moderation terminology with Backspace's "Spaces" branding. Renames WS protocol strings, backend handlers, frontend store/hooks/utils, user-facing labels, and documentation — 15 files, zero functional changes.
This commit is contained in:
@@ -178,9 +178,9 @@ export class SpeakingDetector {
|
||||
if (spaceId) {
|
||||
const myOriginId = getMyUserIdForOrigin(getChannelOrigin(channelId));
|
||||
if (myOriginId) {
|
||||
const serverKey = `${spaceId}:${myOriginId}`;
|
||||
effectiveMuted = effectiveMuted || store.serverMutedUserIds.has(serverKey);
|
||||
effectiveDeafened = effectiveDeafened || store.serverDeafenedUserIds.has(serverKey);
|
||||
const spaceKey = `${spaceId}:${myOriginId}`;
|
||||
effectiveMuted = effectiveMuted || store.spaceMutedUserIds.has(spaceKey);
|
||||
effectiveDeafened = effectiveDeafened || store.spaceDeafenedUserIds.has(spaceKey);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user