1
0
mirror of https://github.com/vector-im/hydrogen-web.git synced 2025-01-12 04:57:18 +01:00

missing semicolon

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

@ -110,7 +110,7 @@ export class PendingEvent {
for (const attachment of Object.values(this._attachments)) { for (const attachment of Object.values(this._attachments)) {
await log.wrap("encrypt", () => { await log.wrap("encrypt", () => {
log.set("size", attachment.size); log.set("size", attachment.size);
return attachment.encrypt() return attachment.encrypt();
}); });
if (this.aborted) { if (this.aborted) {
throw new AbortError(); throw new AbortError();