Patrik Oldsberg
Patrik Oldsberg
`if (typeof(window.webkitRTCPeerConnection) === 'function' && !!window.webkitRTCPeerConnection.prototype.addStream)` This check fails because addStream is not a property of the prototype in our implementation, but instead assigned directly to the peer connection object....
`window.webkitRTCPeerConnection.prototype.addStream = function() {}` should be enough, it'll use the correct function anyway
are you rendering a self-view or only remote streams?
It's assigned once the object is created, try `new webkitRTCPeerConnection({iceServers:[]}).addStream`
As long as the same PEM cert is set for both RTP and RTCP, which will always be the case in OWR, the DtlsAgent should be shared between the two,...
Yep thinking that a separate `msgraphAuthApi` or something like that is where we need to go with this in the end. One that doesn't have the conflicting default scopes. We'd...
Yeah this was debated quite a bit already 😅 Icon would prolly look something like this:  Not a huge fan tbh. Internally we have a color indication on hover,...
Reopening to make sure this doesn't get lost. Some strategies for restoring: Start by creating a back-up point, `git branch dag-runs-backup`, it's good to have this so you can go...
@webark yep looks interesting! At a first glance I'm a bit worried about seemingly generated message IDs, it'll make API stability a bit troublesome
@TejasQ Tbh the core/core-api import rule isn't too necessary as they're both likely to be deprecated and replaced soon. The frontend/backend rule is interesting though, although first step is to...