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
pull/21833/head
David Baker 2020-05-11 16:21:08 +01:00
parent 159547e6f8
commit f487c2b38c
1 changed files with 7 additions and 7 deletions

View File

@ -101,15 +101,15 @@ 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()}`];
if (client.getDeviceCurve25519Key) { if (client.getDeviceCurve25519Key) {
keys.push(`curve25519:${client.getDeviceCurve25519Key()}`); keys.push(`curve25519:${client.getDeviceCurve25519Key()}`);
}
body.append('device_keys', keys.join(', '));
body.append('cross_signing_key', client.getCrossSigningId());
} }
body.append('device_keys', keys.join(', '));
body.append('cross_signing_key', client.getCrossSigningId());
} }
if (opts.label) { if (opts.label) {