We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b6a8fe commit e9ac51aCopy full SHA for e9ac51a
packages/common/src/attachments/AttachmentQueue.ts
@@ -381,7 +381,7 @@ export class AttachmentQueue {
381
* - Archives attachments with missing local files that haven't been uploaded
382
* - Requeues synced attachments for download if their local files are missing
383
*/
384
- verifyAttachments = async (): Promise<void> => {
+ async verifyAttachments(): Promise<void> {
385
const attachments = await this.context.getAttachments();
386
const updates: AttachmentRecord[] = [];
387
@@ -426,5 +426,5 @@ export class AttachmentQueue {
426
}
427
428
await this.context.saveAttachments(updates);
429
- };
+ }
430
0 commit comments