Element-R: fix rageshages (#10081)
quick hacks to get rageshakes working in element R Fixes https://github.com/vector-im/element-web/issues/24430
This commit is contained in:
parent
d4349bb361
commit
5ba8ecabb5
2 changed files with 4 additions and 2 deletions
|
@ -116,7 +116,8 @@ function getEnabledLabs(): string {
|
|||
}
|
||||
|
||||
async function getCryptoContext(client: MatrixClient): Promise<CryptoContext> {
|
||||
if (!client.isCryptoEnabled()) {
|
||||
// TODO: make this work with rust crypto
|
||||
if (!client.isCryptoEnabled() || !client.crypto) {
|
||||
return {};
|
||||
}
|
||||
const keys = [`ed25519:${client.getDeviceEd25519Key()}`];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue