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

Another SonarQube happiness pass (#2347)

This commit is contained in:
Michael Telatynski
2022-05-05 04:34:21 +01:00
committed by GitHub
parent a388fde3e2
commit dea3f52fe9
9 changed files with 26 additions and 30 deletions

View File

@@ -271,9 +271,9 @@ export class SAS extends Base<SasEvent, EventHandlerMap> {
do {
try {
if (this.initiatedByMe) {
return this.doSendVerification();
return await this.doSendVerification();
} else {
return this.doRespondVerification();
return await this.doRespondVerification();
}
} catch (err) {
if (err instanceof SwitchStartEventError) {