randydev commited on
Commit
e179310
·
verified ·
1 Parent(s): db5e877

Update plugins/alldownloader.js

Browse files
Files changed (1) hide show
  1. plugins/alldownloader.js +2 -1
plugins/alldownloader.js CHANGED
@@ -8,6 +8,7 @@ import {
8
  youtubedl,
9
  sfilemobi,
10
  capcutdl,
 
11
  sfilemobiSearch,
12
  TiktokDownloader,
13
  XnxxDownloader,
@@ -88,7 +89,7 @@ AllDlRoutes.get('/api/v1/dl/pint', authenticateApiKey, apiLimiter, async (req, r
88
  if (!q) {
89
  return res.status(400).json({ error: "URL parameter is required." });
90
  }
91
- const results = await PinterestDownloader(q);
92
  res.json({ results });
93
  } catch (error) {
94
  res.status(500).json({ error: error.message });
 
8
  youtubedl,
9
  sfilemobi,
10
  capcutdl,
11
+ PinterestDL,
12
  sfilemobiSearch,
13
  TiktokDownloader,
14
  XnxxDownloader,
 
89
  if (!q) {
90
  return res.status(400).json({ error: "URL parameter is required." });
91
  }
92
+ const results = await PinterestDL(q);
93
  res.json({ results });
94
  } catch (error) {
95
  res.status(500).json({ error: error.message });