Search for the exact name

pull/47/head
MillenniumEarl 2020-11-12 14:20:35 +01:00
parent ca4f258e12
commit 061f8de0ca
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ module.exports.searchGame = async function (name) {
const searchName = encodeURIComponent(name.toUpperCase()); const searchName = encodeURIComponent(name.toUpperCase());
// Prepare the URL (only title, search in the "Games" section, order by relevance) // Prepare the URL (only title, search in the "Games" section, order by relevance)
const url = `https://f95zone.to/search/83456043/?q=${searchName}&t=post&c[child_nodes]=1&c[nodes][0]=2&c[title_only]=1&o=relevance`; const url = `https://f95zone.to/search/83456043/?q="${searchName}"&t=post&c[child_nodes]=1&c[nodes][0]=2&c[title_only]=1&o=relevance`;
// Fetch and parse the result URLs // Fetch and parse the result URLs
return await fetchResultURLs(url); return await fetchResultURLs(url);
@ -42,7 +42,7 @@ module.exports.searchMod = async function (name) {
const searchName = encodeURIComponent(name.toUpperCase()); const searchName = encodeURIComponent(name.toUpperCase());
// Prepare the URL (only title, search in the "Mods" section, order by relevance) // Prepare the URL (only title, search in the "Mods" section, order by relevance)
const url = `https://f95zone.to/search/83459796/?q=${searchName}&t=post&c[child_nodes]=1&c[nodes][0]=41&c[title_only]=1&o=relevance`; const url = `https://f95zone.to/search/83459796/?q="${searchName}"&t=post&c[child_nodes]=1&c[nodes][0]=41&c[title_only]=1&o=relevance`;
// Fetch and parse the result URLs // Fetch and parse the result URLs
return await fetchResultURLs(url); return await fetchResultURLs(url);