From d825cc1d69375e79877ac92ee5ec37016fbbf02a Mon Sep 17 00:00:00 2001 From: tdurieux Date: Wed, 22 Feb 2023 10:00:18 +0100 Subject: [PATCH] fix: fix admin filtering --- src/routes/admin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/admin.ts b/src/routes/admin.ts index e0f19ef..f68d315 100644 --- a/src/routes/admin.ts +++ b/src/routes/admin.ts @@ -106,7 +106,7 @@ router.get("/repos", async (req, res) => { const ready = req.query.ready == "true"; const error = req.query.error == "true"; const preparing = req.query.preparing == "true"; - const remove = req.query.remove == "true"; + const remove = req.query.removed == "true"; const expired = req.query.expired == "true"; let sort: any = { _id: 1 };