Renamed user history to search_history and fixed an issue where search history received the entire user object and not just the username

This commit is contained in:
2019-11-04 20:32:41 +01:00
parent 5d3a5dc8a4
commit acc26a2f09
4 changed files with 13 additions and 7 deletions

View File

@@ -24,7 +24,7 @@ function multiSearchController(req, res) {
const { query, page } = req.query;
if (user) {
searchHistory.create(user, query)
searchHistory.create(user.username, query)
}
return tmdb.multiSearch(query, page)