mirror of
https://github.com/suitenumerique/meet.git
synced 2026-09-01 13:17:59 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 14bb3e6400 |
@@ -35,6 +35,7 @@ and this project adheres to
|
|||||||
- 🐛(frontend) handle device-in-use errors on Chrome / Windows 10
|
- 🐛(frontend) handle device-in-use errors on Chrome / Windows 10
|
||||||
- 🐛(frontend) handle Firefox/Windows AbortError on device start
|
- 🐛(frontend) handle Firefox/Windows AbortError on device start
|
||||||
- 🐛(frontend) treat "Timeout starting source" AbortError as device-in-use
|
- 🐛(frontend) treat "Timeout starting source" AbortError as device-in-use
|
||||||
|
- 🔇(frontend) suppress leaked WebSocket error events from livekit-client
|
||||||
|
|
||||||
## [1.27.0] - 2026-08-14
|
## [1.27.0] - 2026-08-14
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,12 @@ import type { CaptureResult } from 'posthog-js'
|
|||||||
|
|
||||||
const IGNORED_EXCEPTION_PATTERNS = [
|
const IGNORED_EXCEPTION_PATTERNS = [
|
||||||
/ResizeObserver loop (completed with undelivered notifications|limit exceeded)/,
|
/ResizeObserver loop (completed with undelivered notifications|limit exceeded)/,
|
||||||
|
// livekit-client leaks the raw WebSocket error Event as an unhandled
|
||||||
|
// rejection when the signal ws errors after connect (Firefox-heavy,
|
||||||
|
// coincides with signal reconnects). Carries zero diagnostic content —
|
||||||
|
// the close reason is already logged by the SDK.
|
||||||
|
// See: https://github.com/livekit/client-sdk-js/issues/2062
|
||||||
|
/^Event captured as exception with keys: isTrusted$/,
|
||||||
]
|
]
|
||||||
|
|
||||||
const shouldIgnoreException = (value: unknown): boolean =>
|
const shouldIgnoreException = (value: unknown): boolean =>
|
||||||
|
|||||||
Reference in New Issue
Block a user