Second batch: remove deprecated calls on MatrixClient
(#28227)
* Replace `MatrixClient.forceDiscardSession` call by `MatrixClient.CryptoApi.forceDiscardSession` * Remove `MatrixClient.scheduleAllGroupSessionsForBackup` mock
This commit is contained in:
parent
e79916454f
commit
85d2bf3a04
2 changed files with 1 additions and 2 deletions
|
@ -727,7 +727,7 @@ export const Commands = [
|
|||
isEnabled: (cli) => !isCurrentLocalRoom(cli),
|
||||
runFn: function (cli, roomId) {
|
||||
try {
|
||||
cli.forceDiscardSession(roomId);
|
||||
cli.getCrypto()?.forceDiscardSession(roomId);
|
||||
} catch (e) {
|
||||
return reject(e instanceof Error ? e.message : e);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue