diff options
Diffstat (limited to 'omaha_server/crash/utils.py')
-rw-r--r-- | omaha_server/crash/utils.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/omaha_server/crash/utils.py b/omaha_server/crash/utils.py index 8990722..1cceb76 100644 --- a/omaha_server/crash/utils.py +++ b/omaha_server/crash/utils.py @@ -113,13 +113,15 @@ def send_stacktrace_sentry(crash): crashdump_url=crash.upload_file_minidump.url, ) + tags = {} if crash.meta: extra.update(crash.meta) - + ver = crash.meta.get('ver') + if ver: + tags['ver'] = ver if crash.archive: extra['archive_url'] = crash.archive.url - tags = {} tags.update(stacktrace.get('system_info', {})) if crash.appid: |