webrtc frontend can request username from backend

This commit is contained in:
2026-02-09 16:24:25 -08:00
parent b6436c84ee
commit 25a775ee96
8 changed files with 184 additions and 15 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ main
// handle message from ws
ws.onopen = function(e) { console.log('ws open:', e); };
ws.onclose = function(e) { console.log('ws closed:', e); };
ws.onclose = function(e) { console.warn('ws closed:', e); };
ws.onerror = function(e) { console.error('ws error:', e); };
ws.onmessage = function(e) { console.log('ws message', e); };
}