From 6a03c0a3c00ae288cd3c73013a1698cc9eee690d Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 21 Aug 2020 10:32:51 +0100 Subject: [PATCH] Send mx_local_settings in rageshake Perhaps ideally we should get a complete dump of the settings in effect out of the settings manager, but all I want for now is the webrtc audio inputs and outputs, so let's send the ones stored locally. --- src/rageshake/submit-rageshake.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/rageshake/submit-rageshake.ts b/src/rageshake/submit-rageshake.ts index 76b0444052..04a0ad934d 100644 --- a/src/rageshake/submit-rageshake.ts +++ b/src/rageshake/submit-rageshake.ts @@ -182,6 +182,8 @@ export default async function sendBugReport(bugReportEndpoint: string, opts: IOp } } + body.append("mx_local_settings", localStorage.getItem('mx_local_settings')); + if (opts.sendLogs) { progressCallback(_t("Collecting logs")); const logs = await rageshake.getLogsForReport();