From 635168516512805bddd22aee88cfbc9ab4232fa0 Mon Sep 17 00:00:00 2001 From: boufni95 Date: Wed, 29 Jan 2025 17:54:02 +0000 Subject: [PATCH] up --- src/services/webRTC/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/webRTC/index.ts b/src/services/webRTC/index.ts index 72561a22..8944c0f4 100644 --- a/src/services/webRTC/index.ts +++ b/src/services/webRTC/index.ts @@ -6,7 +6,7 @@ import * as Types from '../../../proto/autogenerated/ts/types.js' import { NostrSend, SendData, SendInitiator } from "../nostr/handler.js" import { encodeTLbV, encodeTLV, encodeTLVDataPacket } from '../helpers/tlv.js' type IceCandidate = { type: string, candidate?: string, sdpMid?: string, sdpMLineIndex?: number } -const configuration = { 'iceServers': [{ 'urls': 'stunserver2024.stunprotocol.org' }] } +const configuration = { 'iceServers': [{ 'urls': 'relay.webwormhole.io' }] } type UserInfo = { userPub: string, appId: string } export default class webRTC { private storage: Storage