Fix string in logger

This commit is contained in:
RMidhunSuresh 2023-03-14 23:02:27 +05:30
parent f54a4d107e
commit d60214da10
No known key found for this signature in database

View File

@ -18,7 +18,7 @@ import {VerificationEventTypes} from "../channel/types";
export class SendDoneStage extends BaseSASVerificationStage {
async completeStage() {
await this.log.wrap("VerifyMacStage.completeStage", async (log) => {
await this.log.wrap("SendDoneStage.completeStage", async (log) => {
await this.channel.send(VerificationEventTypes.Done, {}, log);
});
}