Skip to content

Commit 21da1b5

Browse files
committed
fix(replay): Ensure we normalize breadcrumbs to a max. depth
1 parent 100369e commit 21da1b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/replay/src/coreHandlers/util/addBreadcrumbEvent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function addBreadcrumbEvent(replay: ReplayContainer, breadcrumb: Breadcru
2727
timestamp: (breadcrumb.timestamp || 0) * 1000,
2828
data: {
2929
tag: 'breadcrumb',
30-
payload: normalize(breadcrumb),
30+
payload: normalize(breadcrumb, 10),
3131
},
3232
});
3333

0 commit comments

Comments
 (0)