mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-07-07 12:36:57 +00:00
fix empty response from /api/v1/mutes
This commit is contained in:
parent
2b03f51315
commit
c69f7b87f0
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ export class MastodonApiServerService {
|
|||
const client = this.clientService.getClient(_request);
|
||||
|
||||
const data = await client.getMutes(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);
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue