cringe sfx
All checks were successful
Deploy / publish-web (push) Successful in 2m35s

This commit is contained in:
2026-02-06 22:32:01 +06:00
parent 6fa142f133
commit e3ac3e003c
214 changed files with 72 additions and 2 deletions

View File

@@ -29,6 +29,7 @@ const ICE_SERVERS: RTCIceServer[] = [
export const useMediasoup = createSharedComposable(() => {
const toast = useToast()
const sfx = useSfx()
const signaling = useSignaling()
const { addClient, removeClient } = useClients()
@@ -175,6 +176,7 @@ export const useMediasoup = createSharedComposable(() => {
})
socket.on('newPeer', (client) => {
sfx.playRandomConnectionSound(client.socketId).then()
addClient(client)
})