Get rageshake endpoint from SdkConfig instead of storing in rageshake

- in preparation for factoring out the sending of the rageshake
This commit is contained in:
Richard van der Hoff 2017-04-11 18:46:48 +01:00
parent b26c460f13
commit cbfa4dd1ab
3 changed files with 6 additions and 8 deletions
src/components/views/dialogs

View file

@ -17,6 +17,7 @@ limitations under the License.
import React from 'react';
import sdk from 'matrix-react-sdk';
import rageshake from '../../../vector/rageshake';
import SdkConfig from 'matrix-react-sdk/lib/SdkConfig';
export default class BugReportDialog extends React.Component {
constructor(props, context) {
@ -47,7 +48,9 @@ export default class BugReportDialog extends React.Component {
return;
}
this.setState({ busy: true, err: null });
rageshake.sendBugReport(userText, sendLogs).then(() => {
rageshake.sendBugReport(
SdkConfig.get().bug_report_endpoint_url, userText, sendLogs,
).then(() => {
this.setState({ busy: false });
this.props.onFinished(false);
}, (err) => {