Fix rageshake post-sourcemaps

pull/11926/head
Travis Ralston 2020-01-17 18:27:37 -07:00
parent e3b4f189b4
commit cdd25ea45f
1 changed files with 10 additions and 10 deletions

View File

@ -1,5 +1,6 @@
/* /*
Copyright 2018 New Vector Ltd Copyright 2018 New Vector Ltd
Copyright 2020 The Matrix.org Foundation C.I.C.
Licensed under the Apache License, Version 2.0 (the "License"); Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License. you may not use this file except in compliance with the License.
@ -27,6 +28,7 @@ limitations under the License.
import * as rageshake from "matrix-react-sdk/src/rageshake/rageshake"; import * as rageshake from "matrix-react-sdk/src/rageshake/rageshake";
import SdkConfig from "matrix-react-sdk/src/SdkConfig"; import SdkConfig from "matrix-react-sdk/src/SdkConfig";
import sendBugReport from "matrix-react-sdk/src/rageshake/submit-rageshake";
function initRageshake() { function initRageshake() {
rageshake.init().then(() => { rageshake.init().then(() => {
@ -54,15 +56,13 @@ global.mxSendRageshake = function(text, withLogs) {
console.error("Cannot send a rageshake without a message - please tell us what went wrong"); console.error("Cannot send a rageshake without a message - please tell us what went wrong");
return; return;
} }
require(['matrix-react-sdk/src/rageshake/submit-rageshake'], (s) => { sendBugReport(SdkConfig.get().bug_report_endpoint_url, {
s(SdkConfig.get().bug_report_endpoint_url, { userText: text,
userText: text, sendLogs: withLogs,
sendLogs: withLogs, progressCallback: console.log.bind(console),
progressCallback: console.log.bind(console), }).then(() => {
}).then(() => { console.log("Bug report sent!");
console.log("Bug report sent!"); }, (err) => {
}, (err) => { console.error(err);
console.error(err);
});
}); });
}; };