hide edge webrtc because it's incompatible

This commit is contained in:
Chad Pilkey 2017-09-13 17:46:52 -04:00
parent b6f42dc8da
commit 06377b6a25

View File

@ -565,7 +565,12 @@ function webrtc_hangup(callback) {
}
function isWebRTCAvailable() {
return SIP.WebRTC.isSupported();
var browserInfo = determineBrowser();
if (browserInfo[0] === "Edge") {
return false;
else {
return SIP.WebRTC.isSupported();
}
}
function getCallStatus() {