feat: signal server tag

This commit is contained in:
2026-06-05 06:16:02 +02:00
parent 6865147e8f
commit bf4e6891d1
69 changed files with 2808 additions and 1269 deletions
@@ -62,6 +62,10 @@ export function createPeerConnection(
connection.onicecandidate = (event) => {
if (event.candidate) {
if (!callbacks.isSignalingConnected()) {
return;
}
logger.info('ICE candidate gathered', {
remotePeerId,
candidateType: (event.candidate as RTCIceCandidate & { type?: string }).type