diff --git a/src/controllers/search.js b/src/controllers/search.js index 906277f8ba..76a34d1e39 100644 --- a/src/controllers/search.js +++ b/src/controllers/search.js @@ -99,9 +99,11 @@ searchController.search = async function (req, res, next) { async function recordSearch(data) { const { query, searchIn } = data; - const cleanedQuery = String(query).trim().toLowerCase().substr(0, 255); - if (['titles', 'titlesposts', 'posts'].includes(searchIn) && cleanedQuery.length > 2) { - await db.sortedSetIncrBy('searches:all', 1, cleanedQuery); + if (query) { + const cleanedQuery = String(query).trim().toLowerCase().substr(0, 255); + if (['titles', 'titlesposts', 'posts'].includes(searchIn) && cleanedQuery.length > 2) { + await db.sortedSetIncrBy('searches:all', 1, cleanedQuery); + } } }