Commit 426c1e06 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Remove half-baked compatibility code for old browsers.

parent 9560779e
...@@ -1217,13 +1217,16 @@ async function negotiate(id) { ...@@ -1217,13 +1217,16 @@ async function negotiate(id) {
let c = up[id]; let c = up[id];
if(!c) if(!c)
throw new Error('unknown connection'); throw new Error('unknown connection');
if(typeof(c.pc.getTransceivers) !== 'function')
throw new Error('Browser too old, please upgrade');
let offer = await c.pc.createOffer({}); let offer = await c.pc.createOffer({});
if(!offer) if(!offer)
throw(new Error("Didn't create offer")); throw(new Error("Didn't create offer"));
await c.pc.setLocalDescription(offer); await c.pc.setLocalDescription(offer);
// mids are not known until this point // mids are not known until this point
if(typeof(c.pc.getTransceivers) === 'function') {
c.pc.getTransceivers().forEach(t => { c.pc.getTransceivers().forEach(t => {
if(t.sender && t.sender.track) { if(t.sender && t.sender.track) {
let label = c.labels[t.sender.track.id]; let label = c.labels[t.sender.track.id];
...@@ -1233,11 +1236,6 @@ async function negotiate(id) { ...@@ -1233,11 +1236,6 @@ async function negotiate(id) {
console.warn("Couldn't find label for track"); console.warn("Couldn't find label for track");
} }
}); });
} else {
console.warn('getTransceivers undefined');
displayWarning('getTransceivers undefined, please upgrade your browser');
// let the server deal with the mess
}
send({ send({
type: 'offer', type: 'offer',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment