fix(routes/lovelive-anime): update full text CSS selector (#20665)

This commit is contained in:
Yufan You 2025-12-10 13:40:52 +08:00 committed by GitHub
parent 781da24210
commit e5ae378fe9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ async function handler(ctx) {
const detailResp = await got(item.link);
const $ = load(detailResp.data);
const content = $('div.p-page__detail.p-article');
const content = $('.p-article__content');
for (const v of content.find('img')) {
v.attribs.src = 'https://www.lovelive-anime.jp' + v.attribs.src;
}