diff --git a/src/services/webRTC/index.ts b/src/services/webRTC/index.ts index 03b472fc..7eb5d78c 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 { encodeTLV, encodeTLVDataPacket } from '../helpers/tlv.js' type IceCandidate = { type: string, candidate?: string, sdpMid?: string, sdpMLineIndex?: number } -const configuration = { 'iceServers': [{ 'urls': 'stun.stunprotocol.org:3478' }] } +const configuration = { 'iceServers': [{ 'urls': 'stun:stun.l.google.com:19302' }] } type UserInfo = { userPub: string, appId: string } export default class webRTC { private storage: Storage