Skip to content

Commit

Permalink
Always store sourcemap attribute if available
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Dec 3, 2013
1 parent a2378cb commit 66aad51
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/sentry/tasks/fetch_source.py
Expand Up @@ -333,6 +333,10 @@ def expand_javascript_source(data, **kwargs):
frame.function = state.name
frame.abs_path = abs_path
frame.filename = state.src
elif sourcemap in sourmap_idxs:
frame.data = {
'sourcemap': sourcemap,
}

has_changes = True

Expand Down

0 comments on commit 66aad51

Please sign in to comment.