diff --git a/src/services/webRTC/index.ts b/src/services/webRTC/index.ts index 8944c0f4..bc90a0a6 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': 'relay.webwormhole.io' }] } +const configuration = { 'iceServers': [{ 'urls': 'stun:relay.webwormhole.io' }] } type UserInfo = { userPub: string, appId: string } export default class webRTC { private storage: Storage