[mastodon-client] populate user details for account following/followers
This commit is contained in:
parent
e47e905ce9
commit
858549ce41
|
@ -474,9 +474,9 @@ export default class Misskey implements MegalodonInterface {
|
|||
limit: 40
|
||||
})
|
||||
}
|
||||
return this.client.post<Array<MisskeyAPI.Entity.Follower>>('/api/users/followers', params).then(res => {
|
||||
return this.client.post<Array<MisskeyAPI.Entity.Follower>>('/api/users/followers', params).then(async res => {
|
||||
return Object.assign(res, {
|
||||
data: res.data.map(f => this.converter.follower(f))
|
||||
data: (await Promise.all(res.data.map(async f => (this.getAccount(f.followerId)).then(p => p.data))))
|
||||
})
|
||||
})
|
||||
}
|
||||
|
@ -502,9 +502,9 @@ export default class Misskey implements MegalodonInterface {
|
|||
})
|
||||
}
|
||||
}
|
||||
return this.client.post<Array<MisskeyAPI.Entity.Following>>('/api/users/following', params).then(res => {
|
||||
return this.client.post<Array<MisskeyAPI.Entity.Following>>('/api/users/following', params).then(async res => {
|
||||
return Object.assign(res, {
|
||||
data: res.data.map(f => this.converter.following(f))
|
||||
data: (await Promise.all(res.data.map(async f => (this.getAccount(f.followeeId)).then(p => p.data))))
|
||||
})
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue