Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion static/orbital.js
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,9 @@ function onStreamMessage(e) {
try {
parsed = JSON.parse(e.data);
} catch (err) {
Sentry.captureException(err, { extra: { raw: e.data } });
// SSE frames can be mangled by some browsers (e.g. Safari merging adjacent
// frames), producing unparseable data. This is transient network noise —
// log it locally but don't capture to Sentry to avoid false-positive alerts.
console.error('[Sentry Live] Failed to parse event:', e.data);
return;
}
Expand Down