|
@@ -1813,13 +1813,8 @@ export default class JingleSessionPC extends JingleSession {
|
1813
|
1813
|
if (mid > -1) {
|
1814
|
1814
|
remoteSdp.media[mid] = remoteSdp.media[mid].replace(`${line}\r\n`, '');
|
1815
|
1815
|
|
1816
|
|
- // Change the direction to "inactive" only on Firefox. Audio fails on
|
1817
|
|
- // Safari (possibly Chrome in unified plan mode) when we try to re-use inactive
|
1818
|
|
- // m-lines due to a webkit bug.
|
1819
|
|
- // https://bugs.webkit.org/show_bug.cgi?id=211181
|
1820
|
|
- if (browser.isFirefox()) {
|
1821
|
|
- remoteSdp.media[mid] = remoteSdp.media[mid].replace('a=sendonly', 'a=inactive');
|
1822
|
|
- }
|
|
1816
|
+ // Change the direction to "inactive".
|
|
1817
|
+ remoteSdp.media[mid] = remoteSdp.media[mid].replace('a=sendonly', 'a=inactive');
|
1823
|
1818
|
}
|
1824
|
1819
|
});
|
1825
|
1820
|
}
|