diff --git a/server/archive.api.js b/server/archive.api.js index 6047b9cb1..8642f0538 100644 --- a/server/archive.api.js +++ b/server/archive.api.js @@ -7,7 +7,7 @@ const archive = { /* Searches for matching title, also attempts to partial match */ findBrews: async (req, res, next) => { try { - const limit = 2000; + const limit = 1000; const brews = await HomebrewModel.find({ title: { $regex: req.params.query, $options: 'i' }, published: true