mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 12:13:48 +01:00
[mastodon-client] populate user details for account following/followers
This commit is contained in:
parent
d7e63edbd7
commit
57f35be999
@ -474,11 +474,11 @@ export default class Misskey implements MegalodonInterface {
|
||||
limit: 40
|
||||
})
|
||||
}
|
||||
return this.client.post<Array<MisskeyAPI.Entity.Follower>>('/api/users/followers', params).then(res => {
|
||||
return Object.assign(res, {
|
||||
data: res.data.map(f => this.converter.follower(f))
|
||||
})
|
||||
})
|
||||
return this.client.post<Array<MisskeyAPI.Entity.Follower>>('/api/users/followers', params).then(async res => {
|
||||
return Object.assign(res, {
|
||||
data: (await Promise.all(res.data.map(async f => (this.getAccount(f.followerId)).then(p => p.data))))
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
@ -502,11 +502,11 @@ export default class Misskey implements MegalodonInterface {
|
||||
})
|
||||
}
|
||||
}
|
||||
return this.client.post<Array<MisskeyAPI.Entity.Following>>('/api/users/following', params).then(res => {
|
||||
return Object.assign(res, {
|
||||
data: res.data.map(f => this.converter.following(f))
|
||||
})
|
||||
})
|
||||
return this.client.post<Array<MisskeyAPI.Entity.Following>>('/api/users/following', params).then(async res => {
|
||||
return Object.assign(res, {
|
||||
data: (await Promise.all(res.data.map(async f => (this.getAccount(f.followeeId)).then(p => p.data))))
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
public async getAccountLists(_id: string): Promise<Response<Array<Entity.List>>> {
|
||||
|
Loading…
Reference in New Issue
Block a user