From 6b3bc37e1d8a4271b962a13b28f01a9a3b87a45c Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Wed, 17 May 2023 16:41:40 +0530 Subject: [PATCH] Need to return true from method for emit to work --- .../session/room/timeline/tiles/VerificationTile.ts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/domain/session/room/timeline/tiles/VerificationTile.ts b/src/domain/session/room/timeline/tiles/VerificationTile.ts index 85a89ad7..e8d1a5d4 100644 --- a/src/domain/session/room/timeline/tiles/VerificationTile.ts +++ b/src/domain/session/room/timeline/tiles/VerificationTile.ts @@ -38,6 +38,8 @@ export class VerificationTile extends SimpleTile { super(entry, options); this.request = new SASRequest(this.lowerEntry); // Calculate status based on available context-for entries + // Needed so that tiles reflect their final status when + // events are loaded from storage i.e after a reload. this.updateStatusFromAvailableContextForEntries(); } @@ -56,7 +58,6 @@ export class VerificationTile extends SimpleTile { } async reject(): Promise { - // create the SasVerification object and call abort() on it await this.logAndCatch("VerificationTile.reject", async (log) => { const crossSigning = this.getOption("session").crossSigning.get(); await this.request.reject(crossSigning, this._room, log); @@ -70,7 +71,7 @@ export class VerificationTile extends SimpleTile { this.navigation.applyPath(path); } - updateEntry(entry: any, param: any) { + updateEntry(entry: EventEntry, param: any) { if (param === "context-added") { /** * We received a new contextForEntry, maybe it tells us that @@ -85,7 +86,8 @@ export class VerificationTile extends SimpleTile { return super.updateEntry(entry, param); } - updateStatusFromAvailableContextForEntries(): boolean { + private updateStatusFromAvailableContextForEntries(): boolean { + let needsUpdate = false; for (const e of this.lowerEntry.contextForEntries ?? []) { switch (e.eventType) { case VerificationEventType.Cancel: @@ -97,8 +99,9 @@ export class VerificationTile extends SimpleTile { return true; default: this.status = Status.InProgress; + needsUpdate = true; } } - return false; + return needsUpdate; } }