diff --git a/routes/shows.js b/routes/shows.js index 2373262..7e3699d 100644 --- a/routes/shows.js +++ b/routes/shows.js @@ -14,7 +14,7 @@ showsRouter.get('/:id', async function(req, res, next) { const articles = await prisma.serie.findMany({ where: { title: { - contains: req.params.id + equals: req.params.id } } })