From fa4c220444b09598caac34e06485d43aa09c0841 Mon Sep 17 00:00:00 2001 From: Ethan Shen Date: Thu, 9 Sep 2021 16:39:47 +0800 Subject: [PATCH] fix(route): typo in JavDB (#8114) --- lib/routes/javdb/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/javdb/utils.js b/lib/routes/javdb/utils.js index 21f8ba14c..a38ea0c67 100644 --- a/lib/routes/javdb/utils.js +++ b/lib/routes/javdb/utils.js @@ -43,7 +43,7 @@ module.exports = { ctx.cache.tryGet(item.link, async () => { const detailResponse = await got({ method: 'get', - F: item.link, + url: item.link, }); const content = cheerio.load(detailResponse.data);