-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
media: handle sdp errors #459
Conversation
🦋 Changeset detectedLatest commit: 0fa77c4 The changes in this PR will be included in the next version bump. This PR includes changesets to release 4 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
/canary |
🚀 The canary releases have been published to npm. You can test the releases by installing the newly published versions: yarn add @whereby.com/browser-sdk@0.0.0-canary-20241031135851 yarn add @whereby.com/core@0.0.0-canary-20241031135851 yarn add @whereby.com/media@0.0.0-canary-20241031135851 yarn add @whereby.com/react-native-sdk@0.0.0-canary-20241031135851 |
8e194a7
to
69a1385
Compare
/canary |
🚀 The canary releases have been published to npm. You can test the releases by installing the newly published versions: yarn add @whereby.com/browser-sdk@0.0.0-canary-20241031194056 yarn add @whereby.com/core@0.0.0-canary-20241031194056 yarn add @whereby.com/media@0.0.0-canary-20241031194056 yarn add @whereby.com/react-native-sdk@0.0.0-canary-20241031194056 |
/canary |
🚀 The canary releases have been published to npm. You can test the releases by installing the newly published versions: yarn add @whereby.com/browser-sdk@0.0.0-canary-20241101120009 yarn add @whereby.com/core@0.0.0-canary-20241101120009 yarn add @whereby.com/media@0.0.0-canary-20241101120009 yarn add @whereby.com/react-native-sdk@0.0.0-canary-20241101120009 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🍰 Great work!
e499535
to
0fa77c4
Compare
Description
This PR adds an option to clean sdp before setLocalDescription, hopefully working around browser bugs like:
https://issues.webrtc.org/issues/41480892
(and a similar one on Firefox)
It adds events so we can track these kind of errors in our apps
It removes the pendingOffer logic as that was a workaround for a bug long time ago, and interfered with the tracking/events, and makes sure the offer isn't sent to remote end before working locally.
Testing instructions in PWA PR