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