hide edge webrtc because it's incompatible
This commit is contained in:
parent
b6f42dc8da
commit
06377b6a25
@ -565,7 +565,12 @@ function webrtc_hangup(callback) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function isWebRTCAvailable() {
|
function isWebRTCAvailable() {
|
||||||
return SIP.WebRTC.isSupported();
|
var browserInfo = determineBrowser();
|
||||||
|
if (browserInfo[0] === "Edge") {
|
||||||
|
return false;
|
||||||
|
else {
|
||||||
|
return SIP.WebRTC.isSupported();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getCallStatus() {
|
function getCallStatus() {
|
||||||
|
Loading…
Reference in New Issue
Block a user