|
@@ -181,11 +181,14 @@ class Symbolicator:
|
|
|
"options": {"apply_source_context": apply_source_context},
|
|
|
}
|
|
|
|
|
|
- debug_id_index, url_index = get_bundle_index_urls(self.project, release, dist)
|
|
|
- if debug_id_index:
|
|
|
- json["debug_id_index"] = debug_id_index
|
|
|
- if url_index:
|
|
|
- json["url_index"] = url_index
|
|
|
+ try:
|
|
|
+ debug_id_index, url_index = get_bundle_index_urls(self.project, release, dist)
|
|
|
+ if debug_id_index:
|
|
|
+ json["debug_id_index"] = debug_id_index
|
|
|
+ if url_index:
|
|
|
+ json["url_index"] = url_index
|
|
|
+ except Exception as e:
|
|
|
+ sentry_sdk.capture_exception(e)
|
|
|
|
|
|
if release is not None:
|
|
|
json["release"] = release
|