diff --git a/packages/backend/src/server/api/mastodon/MastodonApiServerService.ts b/packages/backend/src/server/api/mastodon/MastodonApiServerService.ts index 601dd2b950..94345027ed 100644 --- a/packages/backend/src/server/api/mastodon/MastodonApiServerService.ts +++ b/packages/backend/src/server/api/mastodon/MastodonApiServerService.ts @@ -250,7 +250,7 @@ export class MastodonApiServerService { const client = this.clientService.getClient(_request); const data = await client.getBlocks(parseTimelineArgs(_request.query)); - const response = Promise.all(data.data.map((account) => this.mastoConverters.convertAccount(account))); + const response = await Promise.all(data.data.map((account) => this.mastoConverters.convertAccount(account))); reply.send(response); });