1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-23 17:02:25 +03:00

Fix semicolons in TS files

This updates the linting config to include the semi fix in
https://github.com/matrix-org/eslint-plugin-matrix-org/pull/8. The various semi
errors have been auto-fixed.
This commit is contained in:
J. Ryan Stinnett
2021-06-02 11:49:39 +01:00
parent 801b4022de
commit e2ec8952e3
5 changed files with 17 additions and 17 deletions

View File

@@ -87,7 +87,7 @@ export class CallEventHandler {
}
this.callEventBuffer = [];
}
}
};
private onEvent = (event: MatrixEvent) => {
this.client.decryptEventIfNeeded(event);
@@ -117,7 +117,7 @@ export class CallEventHandler {
}
});
}
}
};
private eventIsACall(event: MatrixEvent): boolean {
const type = event.getType();