mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
Add MatrixEvent type
This commit is contained in:
parent
c79b6a412d
commit
7c8637f5db
1 changed files with 2 additions and 1 deletions
|
@ -24,6 +24,7 @@ import Spinner from '../elements/Spinner';
|
|||
import InteractiveAuthDialog from '../dialogs/InteractiveAuthDialog';
|
||||
import ConfirmDestroyCrossSigningDialog from '../dialogs/security/ConfirmDestroyCrossSigningDialog';
|
||||
import { replaceableComponent } from "../../../utils/replaceableComponent";
|
||||
import { MatrixEvent } from '../../../../../matrix-js-sdk/src';
|
||||
|
||||
interface IState {
|
||||
error?: Error;
|
||||
|
@ -63,7 +64,7 @@ export default class CrossSigningPanel extends React.PureComponent<{}, IState> {
|
|||
cli.removeListener("crossSigning.keysChanged", this.onStatusChanged);
|
||||
}
|
||||
|
||||
private onAccountData = (event): void => {
|
||||
private onAccountData = (event: MatrixEvent): void => {
|
||||
const type = event.getType();
|
||||
if (type.startsWith("m.cross_signing") || type.startsWith("m.secret_storage")) {
|
||||
this.getUpdatedStatus();
|
||||
|
|
Loading…
Reference in a new issue