add device and cross-signing public keys to rageshake info (#4097)
This commit is contained in:
parent
dcc8862d4c
commit
953af6f036
1 changed files with 7 additions and 0 deletions
|
@ -96,6 +96,13 @@ export default async function sendBugReport(bugReportEndpoint, opts) {
|
||||||
body.append('device_id', client.deviceId);
|
body.append('device_id', client.deviceId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const keys = [`ed25519:${client.getDeviceEd25519Key()}`];
|
||||||
|
if (client.getDeviceCurve25519Key) {
|
||||||
|
keys.push(`curve25519:${client.getDeviceCurve25519Key()}`);
|
||||||
|
}
|
||||||
|
body.append('device_keys', keys.join(', '));
|
||||||
|
body.append('cross_signing_key', client.getCrossSigningId());
|
||||||
|
|
||||||
if (opts.label) {
|
if (opts.label) {
|
||||||
body.append('label', opts.label);
|
body.append('label', opts.label);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue