Fix rageshake with no matrix client
We checked for the presence of a matrix client but then went and called a method on it assuming it existed on the line below, so, don't do that. https://github.com/vector-im/riot-web/issues/13624 pointed this out
This commit is contained in:
parent
159547e6f8
commit
f487c2b38c
1 changed files with 7 additions and 7 deletions
|
@ -101,7 +101,6 @@ export default async function sendBugReport(bugReportEndpoint: string, opts: IOp
|
||||||
if (client) {
|
if (client) {
|
||||||
body.append('user_id', client.credentials.userId);
|
body.append('user_id', client.credentials.userId);
|
||||||
body.append('device_id', client.deviceId);
|
body.append('device_id', client.deviceId);
|
||||||
}
|
|
||||||
|
|
||||||
if (client.isCryptoEnabled()) {
|
if (client.isCryptoEnabled()) {
|
||||||
const keys = [`ed25519:${client.getDeviceEd25519Key()}`];
|
const keys = [`ed25519:${client.getDeviceEd25519Key()}`];
|
||||||
|
@ -111,6 +110,7 @@ export default async function sendBugReport(bugReportEndpoint: string, opts: IOp
|
||||||
body.append('device_keys', keys.join(', '));
|
body.append('device_keys', keys.join(', '));
|
||||||
body.append('cross_signing_key', client.getCrossSigningId());
|
body.append('cross_signing_key', client.getCrossSigningId());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (opts.label) {
|
if (opts.label) {
|
||||||
body.append('label', opts.label);
|
body.append('label', opts.label);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue