From db0b637da08fde982e280c1ef07fa3e7a99cd881 Mon Sep 17 00:00:00 2001 From: Derek Date: Tue, 8 Aug 2023 17:27:15 +0800 Subject: [PATCH] fix(route): elsevier (#12948) --- lib/v2/elsevier/journal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/v2/elsevier/journal.js b/lib/v2/elsevier/journal.js index c7d4773e8..20b040b8a 100644 --- a/lib/v2/elsevier/journal.js +++ b/lib/v2/elsevier/journal.js @@ -16,7 +16,7 @@ module.exports = async (ctx) => { }); const $ = cheerio.load(response.data); const jrnlName = $('.anchor.js-title-link').text(); - const issueUrl = `${host}${$('.anchor.js-volume').attr('href')}`; + const issueUrl = `${host}${$('.link-anchor.u-clr-black').attr('href')}`; let issue = ''; if (issueUrl.match('suppl') !== null) { issue = 'Volume ' + issueUrl.match('vol/(.*)/suppl')[1];