Fix peers API returning suspended instances

This commit is contained in:
ineffyble 2022-12-23 04:32:45 +00:00
parent 7e7740b955
commit 93654b7e2c

View file

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