]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix index search
authorChocobozzz <me@florianbigard.com>
Wed, 10 Mar 2021 08:25:26 +0000 (09:25 +0100)
committerChocobozzz <me@florianbigard.com>
Wed, 24 Mar 2021 17:18:40 +0000 (18:18 +0100)
server/controllers/api/search.ts

index 317b24fe99d55df10c0af65c4a6ecb4ad2849db7..57357b1e891d6b6609648660ec4b2a1585a81ad0 100644 (file)
@@ -94,7 +94,7 @@ async function searchVideoChannelsIndex (query: VideoChannelsSearchQuery, res: e
   try {
     logger.debug('Doing video channels search index request on %s.', url, { body })
 
-    const searchIndexResult = await doJSONRequest<ResultList<VideoChannel>>(url, { json: body })
+    const { body: searchIndexResult } = await doJSONRequest<ResultList<VideoChannel>>(url, { method: 'POST', json: body })
 
     return res.json(searchIndexResult)
   } catch (err) {
@@ -186,7 +186,7 @@ async function searchVideosIndex (query: VideosSearchQuery, res: express.Respons
   try {
     logger.debug('Doing videos search index request on %s.', url, { body })
 
-    const searchIndexResult = await doJSONRequest<ResultList<Video>>(url, { json: body })
+    const { body: searchIndexResult } = await doJSONRequest<ResultList<Video>>(url, { method: 'POST', json: body })
 
     return res.json(searchIndexResult)
   } catch (err) {