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
2 changes: 1 addition & 1 deletion src/sentry/tasks/fetch_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def expand_javascript_source(data, **kwargs):

# queue up additional source files for download
for source in index.sources:
next_filename = urljoin(result.url, source)
next_filename = urljoin(sourcemap, source)
if next_filename not in done_file_list:
if index.content:
source_code[next_filename] = (index.content[source], None)
Expand Down