From 41ecf1db8e2b7fc46ca297cc710e5ddbeb5e3d93 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Wed, 24 Feb 2021 10:38:19 +0100 Subject: [PATCH] missing semicolon --- src/matrix/room/sending/PendingEvent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/room/sending/PendingEvent.js b/src/matrix/room/sending/PendingEvent.js index 3c1e2331..e6d518ca 100644 --- a/src/matrix/room/sending/PendingEvent.js +++ b/src/matrix/room/sending/PendingEvent.js @@ -110,7 +110,7 @@ export class PendingEvent { for (const attachment of Object.values(this._attachments)) { await log.wrap("encrypt", () => { log.set("size", attachment.size); - return attachment.encrypt() + return attachment.encrypt(); }); if (this.aborted) { throw new AbortError();