randydev commited on
Commit
bc5603e
·
verified ·
1 Parent(s): dce2382

Update lib/scrapper.js

Browse files
Files changed (1) hide show
  1. lib/scrapper.js +3 -2
lib/scrapper.js CHANGED
@@ -22,10 +22,11 @@ async function PinterestDL(search) {
22
  }
23
  }
24
 
25
- async function IzreCustom(endpoint, params, search) {
26
  try {
27
  const urls = ParametersUrl(endpoint);
28
- const url = urls + `?${params}=${encodeURIComponent(search)}`;
 
29
  const response = await axios.get(url);
30
  return AuthorOriginal(response);
31
  } catch (error) {
 
22
  }
23
  }
24
 
25
+ async function IzreCustom(endpoint, params) {
26
  try {
27
  const urls = ParametersUrl(endpoint);
28
+ const queryString = new URLSearchParams(params).toString();
29
+ const url = `${urls}?${queryString}`;
30
  const response = await axios.get(url);
31
  return AuthorOriginal(response);
32
  } catch (error) {