Fix peers API returning suspended instances

This commit is contained in:
ineffyble 2022-12-23 04:32:45 +00:00
parent 7e7740b955
commit 93654b7e2c
1 changed files with 3 additions and 0 deletions

View File

@ -91,6 +91,9 @@ router.use(twitter.routes());
router.get('/v1/instance/peers', async ctx => { router.get('/v1/instance/peers', async ctx => {
const instances = await Instances.find({ const instances = await Instances.find({
select: ['host'], select: ['host'],
where: {
isSuspended: false,
},
}); });
ctx.body = instances.map(instance => instance.host); ctx.body = instances.map(instance => instance.host);