missing semicolon

This commit is contained in:
Bruno Windels 2021-02-24 10:38:19 +01:00
parent ee8886f7c2
commit 41ecf1db8e

View file

@ -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();