randydev commited on
Commit
591cb89
·
verified ·
1 Parent(s): 22dc6b5

Update plugins/alldownloader.js

Browse files
Files changed (1) hide show
  1. plugins/alldownloader.js +3 -3
plugins/alldownloader.js CHANGED
@@ -59,13 +59,13 @@ async function downloadMedia(media) {
59
 
60
  /**
61
  * @swagger
62
- * /api/v1/custom/endpoint:
63
  * get:
64
  * summary: Custom api endpoint all
65
  * tags: [ALL-Endpoint]
66
  * parameters:
67
  * - in: query
68
- * name: endpoint
69
  * required: true
70
  * description: null
71
  * schema:
@@ -96,7 +96,7 @@ async function downloadMedia(media) {
96
  */
97
  AllDlRoutes.get('/api/v1/custom/endpoint', apiLimiter, async (req, res) => {
98
  try {
99
- const e = req.query.endpoint;
100
  const params = req.query.params;
101
  const search = req.query.search;
102
 
 
59
 
60
  /**
61
  * @swagger
62
+ * /api/v1/custom/endpoints:
63
  * get:
64
  * summary: Custom api endpoint all
65
  * tags: [ALL-Endpoint]
66
  * parameters:
67
  * - in: query
68
+ * name: endpoints
69
  * required: true
70
  * description: null
71
  * schema:
 
96
  */
97
  AllDlRoutes.get('/api/v1/custom/endpoint', apiLimiter, async (req, res) => {
98
  try {
99
+ const e = req.query.endpoints;
100
  const params = req.query.params;
101
  const search = req.query.search;
102