Skip to content

Commit e9ac51a

Browse files
committed
chore: conform verifyAttachments to normal function
1 parent 3b6a8fe commit e9ac51a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/common/src/attachments/AttachmentQueue.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ export class AttachmentQueue {
381381
* - Archives attachments with missing local files that haven't been uploaded
382382
* - Requeues synced attachments for download if their local files are missing
383383
*/
384-
verifyAttachments = async (): Promise<void> => {
384+
async verifyAttachments(): Promise<void> {
385385
const attachments = await this.context.getAttachments();
386386
const updates: AttachmentRecord[] = [];
387387

@@ -426,5 +426,5 @@ export class AttachmentQueue {
426426
}
427427

428428
await this.context.saveAttachments(updates);
429-
};
429+
}
430430
}

0 commit comments

Comments
 (0)