Merge pull request #3000 from vector-im/kegan/rageshake

Implement bug reporting logic
This commit is contained in:
Kegsay 2017-01-25 10:34:05 +00:00 committed by GitHub
commit 80c1ec0502
3 changed files with 508 additions and 0 deletions

View file

@ -36,6 +36,14 @@ require('gfm.css/gfm.css');
require('highlight.js/styles/github.css');
require('draft-js/dist/Draft.css');
const rageshake = require("./rageshake");
rageshake.init().then(() => {
console.log("Initialised rageshake: See https://bugs.chromium.org/p/chromium/issues/detail?id=583193 to fix line numbers on Chrome.");
rageshake.cleanup();
}, (err) => {
console.error("Failed to initialise rageshake: " + err);
});
// add React and ReactPerf to the global namespace, to make them easier to
// access via the console
@ -233,6 +241,7 @@ async function loadApp() {
let configError;
try {
configJson = await getConfig();
rageshake.setBugReportEndpoint(configJson.bug_report_endpoint_url);
} catch (e) {
configError = e;
}