mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-11-01 20:43:33 +00:00
17 lines
315 B
JavaScript
17 lines
315 B
JavaScript
'use strict';
|
|
|
|
const { crashReporter } = require('electron');
|
|
|
|
const crashHandler = () => {
|
|
crashReporter.start({
|
|
productName: 'zulip-electron',
|
|
companyName: 'Kandra Labs, Inc.',
|
|
submitURL: 'https://zulip-sentry.herokuapp.com/crashreport',
|
|
uploadToServer: true
|
|
});
|
|
};
|
|
|
|
module.exports = {
|
|
crashHandler
|
|
};
|