多分 fix #9551
This commit is contained in:
		| @@ -60,7 +60,8 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { | ||||
| 		private queryService: QueryService, | ||||
| 	) { | ||||
| 		super(meta, paramDef, async (ps, me) => { | ||||
| 			const query = this.queryService.makePaginationQuery(this.followRequestsRepository.createQueryBuilder('request'), ps.sinceId, ps.untilId); | ||||
| 			const query = this.queryService.makePaginationQuery(this.followRequestsRepository.createQueryBuilder('request'), ps.sinceId, ps.untilId) | ||||
| 				.andWhere('request.followeeId = :meId', { meId: me.id }); | ||||
|  | ||||
| 			const requests = await query | ||||
| 				.take(ps.limit) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 syuilo
					syuilo