mirror of https://github.com/vector-im/riot-web
Merge pull request #4724 from matrix-org/t3chguy/lb
send state of lowBandwidth in rageshakespull/21833/head
commit
36e49df025
|
@ -145,6 +145,10 @@ export default async function sendBugReport(bugReportEndpoint: string, opts: IOp
|
||||||
if (enabledLabs.length) {
|
if (enabledLabs.length) {
|
||||||
body.append('enabled_labs', enabledLabs.join(', '));
|
body.append('enabled_labs', enabledLabs.join(', '));
|
||||||
}
|
}
|
||||||
|
// if low bandwidth mode is enabled, say so over rageshake, it causes many issues
|
||||||
|
if (SettingsStore.getValue("lowBandwidth")) {
|
||||||
|
body.append("lowBandwidth", "enabled");
|
||||||
|
}
|
||||||
|
|
||||||
// add storage persistence/quota information
|
// add storage persistence/quota information
|
||||||
if (navigator.storage && navigator.storage.persisted) {
|
if (navigator.storage && navigator.storage.persisted) {
|
||||||
|
|
Loading…
Reference in New Issue