After getting an email from Twilio with the title "Twilio Video JS SDK and Firefox 68 Breaking Change" which suggest that applications with twilio-video package version 1.18.0 and below will have breaking changes for the new firefox 68, I went to update my npm package to version 1.18.1 but now when I try to open my app in firefox quantum 67.0.4 I get the following error:
ReferenceError: mozRTCSessionDescription is not defined
./node_modules/@twilio/webrtc/lib/rtcsessiondescription/firefox.js
node_modules/@twilio/webrtc/lib/rtcsessiondescription/firefox.js:4
1 | /* globals mozRTCSessionDescription, RTCSessionDescription */
2 | 'use strict';
3 |
> 4 | module.exports = typeof RTCSessionDescription !== 'undefined' ? RTCSessionDescription : mozRTCSessionDescription;
Bug?, Is there a fix to this? Thanks!