mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 08:36:03 -04:00
unbreak calls in firefox
This commit is contained in:
parent
575852e6b5
commit
1c0408de08
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ angular.module('MatrixCall', [])
|
|||
var stunServer = 'stun:stun.l.google.com:19302';
|
||||
var pc;
|
||||
if (window.mozRTCPeerConnection) {
|
||||
pc = window.mozRTCPeerConnection({'url': stunServer});
|
||||
pc = new window.mozRTCPeerConnection({'url': stunServer});
|
||||
} else {
|
||||
pc = new window.RTCPeerConnection({"iceServers":[{"urls":"stun:stun.l.google.com:19302"}]});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue