Skip to content

Commit

Permalink
feat(js): Return sourcemap_origin from Symbolicator (#69755)
Browse files Browse the repository at this point in the history
  • Loading branch information
loewenheim committed May 2, 2024
1 parent 5bff6b7 commit f898aee
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/sentry/lang/javascript/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ def _merge_frame(new_frame, symbolicated):
frame_meta = new_frame.setdefault("data", {})
if data_sourcemap := data.get("sourcemap"):
frame_meta["sourcemap"] = data_sourcemap
if data_sourcemap_origin := data.get("sourcemap_origin"):
frame_meta["sourcemap_origin"] = data_sourcemap_origin
if data_resolved_with := data.get("resolved_with"):
frame_meta["resolved_with"] = data_resolved_with
if data.get("symbolicated") is not None:
Expand Down

0 comments on commit f898aee

Please sign in to comment.