finally getting the ip to name relation properly

This commit is contained in:
2026-07-02 15:19:23 +01:00
parent 19d33951cc
commit 2024f4cbe0
2 changed files with 30 additions and 11 deletions
+3 -3
View File
@@ -408,10 +408,10 @@
setStatus('Connecting...');
sigWs = new WebSocket(SIG_URL);
sigWs.onopen = () => {
sigWs.onopen = async () => {
setStatus('Connected — setting up stream...');
initVisitorName();
setupPeerConnection();
await initVisitorName();
await setupPeerConnection();
};
sigWs.onmessage = async e => {