fix missing concurrency limit when resolving note attachments

This commit is contained in:
Hazelnoot 2025-11-14 19:10:30 -05:00
parent 4776292cee
commit 7023aeee33

View file

@ -758,7 +758,7 @@ export class ApNoteService implements OnModuleInit {
const results = await promiseMap(attachments.values(), async attach => {
attach.sensitive ??= note.sensitive;
return await this.resolveImage(actor, attach);
});
}, { limit: 2 });
// Process results
let hasFileError = false;